select-shipping-method.js 283 B

1234567891011121314151617
  1. /**
  2. * Copyright © Magento, Inc. All rights reserved.
  3. * See COPYING.txt for license details.
  4. */
  5. /**
  6. * @api
  7. */
  8. define([
  9. '../model/quote'
  10. ], function (quote) {
  11. 'use strict';
  12. return function (shippingMethod) {
  13. quote.shippingMethod(shippingMethod);
  14. };
  15. });