source: trip-planner-front/node_modules/@babel/traverse/lib/cache.js@ 84d0fbb

Last change on this file since 84d0fbb was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 488 bytes
Line 
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.clear = clear;
7exports.clearPath = clearPath;
8exports.clearScope = clearScope;
9exports.scope = exports.path = void 0;
10let path = new WeakMap();
11exports.path = path;
12let scope = new WeakMap();
13exports.scope = scope;
14
15function clear() {
16 clearPath();
17 clearScope();
18}
19
20function clearPath() {
21 exports.path = path = new WeakMap();
22}
23
24function clearScope() {
25 exports.scope = scope = new WeakMap();
26}
Note: See TracBrowser for help on using the repository browser.