yeet
This commit is contained in:
27
node_modules/@babel/plugin-transform-reserved-words/lib/index.js
generated
vendored
Normal file
27
node_modules/@babel/plugin-transform-reserved-words/lib/index.js
generated
vendored
Normal file
@ -0,0 +1,27 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.default = void 0;
|
||||
|
||||
var _helperPluginUtils = require("@babel/helper-plugin-utils");
|
||||
|
||||
var _core = require("@babel/core");
|
||||
|
||||
var _default = (0, _helperPluginUtils.declare)(api => {
|
||||
api.assertVersion(7);
|
||||
return {
|
||||
name: "transform-reserved-words",
|
||||
visitor: {
|
||||
"BindingIdentifier|ReferencedIdentifier"(path) {
|
||||
if (!_core.types.isValidES3Identifier(path.node.name)) {
|
||||
path.scope.rename(path.node.name);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
};
|
||||
});
|
||||
|
||||
exports.default = _default;
|
Reference in New Issue
Block a user