config.js 488 B

1234567891011121314151617181920212223242526
  1. /**
  2. * Copyright © Magento, Inc. All rights reserved.
  3. * See COPYING.txt for license details.
  4. */
  5. /**
  6. * @deprecated since version 2.2.0
  7. */
  8. /* eslint-disable strict */
  9. define([], function () {
  10. return {
  11. /**
  12. * Get base url.
  13. */
  14. getBaseUrl: function () {
  15. return this.values.baseUrl;
  16. },
  17. /**
  18. * Get form key.
  19. */
  20. getFormKey: function () {
  21. return this.values.formKey;
  22. }
  23. };
  24. });