1234567891011121314151617181920212223242526272829303132 |
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- define([], function () {
- 'use strict';
- var cache = [];
- return {
- /**
- * @param {String} addressKey
- * @return {*}
- */
- get: function (addressKey) {
- if (cache[addressKey]) {
- return cache[addressKey];
- }
- return false;
- },
- /**
- * @param {String} addressKey
- * @param {*} data
- */
- set: function (addressKey, data) {
- cache[addressKey] = data;
- }
- };
- });
|