1234567891011121314151617181920212223242526 |
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- /**
- * @deprecated since version 2.2.0
- */
- /* eslint-disable strict */
- define([], function () {
- return {
- /**
- * Get base url.
- */
- getBaseUrl: function () {
- return this.values.baseUrl;
- },
- /**
- * Get form key.
- */
- getFormKey: function () {
- return this.values.formKey;
- }
- };
- });
|