Urara-Blog/node_modules/.pnpm-store/v3/files/a9/7f335ffef73287d802006679d3dac36aee615f28905e0213b3caae3b0d28a69bfd9a6321b521e9e7dbe426287c1e7513f904ecb511a9e0f0b71f3fae88f5e2
2022-08-14 01:14:53 +08:00

26 lines
No EOL
488 B
Text

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.clear = clear;
exports.clearPath = clearPath;
exports.clearScope = clearScope;
exports.scope = exports.path = void 0;
let path = new WeakMap();
exports.path = path;
let scope = new WeakMap();
exports.scope = scope;
function clear() {
clearPath();
clearScope();
}
function clearPath() {
exports.path = path = new WeakMap();
}
function clearScope() {
exports.scope = scope = new WeakMap();
}