Sha256: 39d3199bc2124201c35c88ae776f9bef7a2d013f7bfaaf5e5b2af7dbc561b735
Contents?: true
Size: 580 Bytes
Versions: 24
Compression:
Stored size: 580 Bytes
Contents
"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;
Version data entries
24 entries across 23 versions & 7 rubygems