Socket
Socket
Sign inDemoInstall

@babel/plugin-transform-unicode-escapes

Package Overview
Dependencies
Maintainers
4
Versions
36
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@babel/plugin-transform-unicode-escapes - npm Package Compare versions

Comparing version 7.18.10 to 7.21.4-esm

lib/index.js.map

32

lib/index.js

@@ -7,7 +7,4 @@ "use strict";

exports.default = void 0;
var _helperPluginUtils = require("@babel/helper-plugin-utils");
var _core = require("@babel/core");
var _default = (0, _helperPluginUtils.declare)(api => {

@@ -17,11 +14,7 @@ api.assertVersion(7);

const unicodeEscape = /(\\+)u\{([0-9a-fA-F]+)\}/g;
function escape(code) {
let str = code.toString(16);
while (str.length < 4) str = "0" + str;
return "\\u" + str;
}
function replacer(match, backslashes, code) {

@@ -31,3 +24,2 @@ if (backslashes.length % 2 === 0) {

}
const char = String.fromCodePoint(parseInt(code, 16));

@@ -37,10 +29,7 @@ const escaped = backslashes.slice(0, -1) + escape(char.charCodeAt(0));

}
function replaceUnicodeEscapes(str) {
return str.replace(unicodeEscape, replacer);
}
function getUnicodeEscape(str) {
let match;
while (match = unicodeEscape.exec(str)) {

@@ -51,9 +40,6 @@ if (match[1].length % 2 === 0) continue;

}
return null;
}
return {
name: "transform-unicode-escapes",
manipulateOptions({

@@ -63,10 +49,7 @@ generatorOpts

var _generatorOpts$jsescO, _generatorOpts$jsescO2;
if (!generatorOpts.jsescOption) {
generatorOpts.jsescOption = {};
}
(_generatorOpts$jsescO2 = (_generatorOpts$jsescO = generatorOpts.jsescOption).minimal) != null ? _generatorOpts$jsescO2 : _generatorOpts$jsescO.minimal = false;
},
visitor: {

@@ -85,5 +68,3 @@ Identifier(path) {

if (name === replaced) return;
const str = _core.types.inherits(_core.types.stringLiteral(name), node);
if (key === "key") {

@@ -93,3 +74,2 @@ path.replaceWith(str);

}
const {

@@ -99,3 +79,2 @@ parentPath,

} = path;
if (parentPath.isMemberExpression({

@@ -110,5 +89,3 @@ property: node

}
const binding = scope.getBinding(name);
if (binding) {

@@ -118,6 +95,4 @@ scope.rename(name, scope.generateUid(replaced));

}
throw path.buildCodeFrameError(`Can't reference '${name}' as a bare identifier`);
},
"StringLiteral|DirectiveLiteral"(path) {

@@ -132,3 +107,2 @@ const {

},
TemplateElement(path) {

@@ -145,14 +119,12 @@ const {

const grandParent = parentPath.parentPath;
if (grandParent.isTaggedTemplateExpression()) {
throw path.buildCodeFrameError(`Can't replace Unicode escape '${firstEscape}' inside tagged template literals. You can enable '@babel/plugin-transform-template-literals' to compile them to classic strings.`);
}
value.raw = replaceUnicodeEscapes(value.raw);
}
}
};
});
exports.default = _default;
exports.default = _default;
//# sourceMappingURL=index.js.map
{
"name": "@babel/plugin-transform-unicode-escapes",
"version": "7.18.10",
"version": "7.21.4-esm",
"description": "Compile ES2015 Unicode escapes to ES5",

@@ -19,10 +19,10 @@ "repository": {

"dependencies": {
"@babel/helper-plugin-utils": "^7.18.9"
"@babel/helper-plugin-utils": "^7.21.4-esm"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
"@babel/core": "^7.0.0-0 || 7.21.4-esm"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/helper-plugin-test-runner": "^7.18.6"
"@babel/core": "^7.21.4-esm",
"@babel/helper-plugin-test-runner": "^7.21.4-esm"
},

@@ -29,0 +29,0 @@ "homepage": "https://babel.dev/docs/en/next/babel-plugin-transform-unicode-escapes",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc