| 12345678910111213141516171819202122232425 |
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- define([
- 'underscore'
- ], function (_) {
- 'use strict';
- return _.extend({
- directiveTemplate: '{{config path="%s"}}',
- /**
- * @param {String} path
- * @return {String}
- */
- processConfig: function (path) {
- return this.directiveTemplate.replace('%s', path);
- }
- });
- });
|