12 lines
327 B
JavaScript
12 lines
327 B
JavaScript
"use strict";
|
|
const common_vendor = require("../common/vendor.js");
|
|
function getCache(name) {
|
|
if (name == void 0 || name == "") {
|
|
return "";
|
|
}
|
|
let result = common_vendor.index.getStorageSync(name);
|
|
return result;
|
|
}
|
|
exports.getCache = getCache;
|
|
//# sourceMappingURL=../../.sourcemap/mp-weixin/utils/authority.js.map
|