| Current Path : /var/www/clients/client3/web2/web/pub/static/frontend/Magento/luma/en_GB/mage/ |
| Current File : /var/www/clients/client3/web2/web/pub/static/frontend/Magento/luma/en_GB/mage/url.js |
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
/* eslint-disable strict */
define([], function () {
var baseUrl = '';
return {
/**
* @param {String} url
*/
setBaseUrl: function (url) {
baseUrl = url;
},
/**
* @param {String} path
* @return {*}
*/
build: function (path) {
if (path.indexOf(baseUrl) !== -1) {
return path;
}
return baseUrl + path;
}
};
});