getKeyPrefix.js 314 B

1234567
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. function getKeyPrefix(options, defaultConfig) {
  4. return (options.name || defaultConfig.name) + "/" + (options.storeName || defaultConfig.storeName) + "/";
  5. }
  6. exports.getKeyPrefix = getKeyPrefix;
  7. //# sourceMappingURL=getKeyPrefix.js.map