You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 7-8.RSVP
Socket
Socket
Sign inDemoInstall

@babel/plugin-transform-template-literals

Package Overview
Dependencies
Maintainers
4
Versions
77
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 7.22.5 to 8.0.0-alpha.0

48

lib/index.js

@@ -1,14 +0,8 @@

"use strict";
import { declare } from '@babel/helper-plugin-utils';
import { types, template } from '@babel/core';
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, options) => {
var _api$assumption, _api$assumption2;
var index = declare((api, options) => {
api.assertVersion(7);
const ignoreToPrimitiveHint = (_api$assumption = api.assumption("ignoreToPrimitiveHint")) != null ? _api$assumption : options.loose;
const mutableTemplateObject = (_api$assumption2 = api.assumption("mutableTemplateObject")) != null ? _api$assumption2 : options.loose;
const ignoreToPrimitiveHint = api.assumption("ignoreToPrimitiveHint") ?? options.loose;
const mutableTemplateObject = api.assumption("mutableTemplateObject") ?? options.loose;
let helperName = "taggedTemplateLiteral";

@@ -19,3 +13,3 @@ if (mutableTemplateObject) helperName += "Loose";

return items.reduce(function (left, right) {
let canBeInserted = _core.types.isLiteral(right);
let canBeInserted = types.isLiteral(right);
if (!canBeInserted && avail) {

@@ -25,7 +19,7 @@ canBeInserted = true;

}
if (canBeInserted && _core.types.isCallExpression(left)) {
if (canBeInserted && types.isCallExpression(left)) {
left.arguments.push(right);
return left;
}
return _core.types.callExpression(_core.types.memberExpression(left, _core.types.identifier("concat")), [right]);
return types.callExpression(types.memberExpression(left, types.identifier("concat")), [right]);
});

@@ -51,5 +45,5 @@ }

} = elem.value;
const value = cooked == null ? path.scope.buildUndefinedNode() : _core.types.stringLiteral(cooked);
const value = cooked == null ? path.scope.buildUndefinedNode() : types.stringLiteral(cooked);
strings.push(value);
raws.push(_core.types.stringLiteral(raw));
raws.push(types.stringLiteral(raw));
if (raw !== cooked) {

@@ -59,12 +53,12 @@ isStringsRawEqual = false;

}
const helperArgs = [_core.types.arrayExpression(strings)];
const helperArgs = [types.arrayExpression(strings)];
if (!isStringsRawEqual) {
helperArgs.push(_core.types.arrayExpression(raws));
helperArgs.push(types.arrayExpression(raws));
}
const tmp = path.scope.generateUidIdentifier("templateObject");
path.scope.getProgramParent().push({
id: _core.types.cloneNode(tmp)
id: types.cloneNode(tmp)
});
path.replaceWith(_core.types.callExpression(node.tag, [_core.template.expression.ast`
${_core.types.cloneNode(tmp)} || (
path.replaceWith(types.callExpression(node.tag, [template.expression.ast`
${types.cloneNode(tmp)} || (
${tmp} = ${this.addHelper(helperName)}(${helperArgs})

@@ -83,3 +77,3 @@ )

if (elem.value.cooked) {
nodes.push(_core.types.stringLiteral(elem.value.cooked));
nodes.push(types.stringLiteral(elem.value.cooked));
}

@@ -89,3 +83,3 @@ if (index < expressions.length) {

const node = expr.node;
if (!_core.types.isStringLiteral(node, {
if (!types.isStringLiteral(node, {
value: ""

@@ -97,4 +91,4 @@ })) {

}
if (!_core.types.isStringLiteral(nodes[0]) && !(ignoreToPrimitiveHint && _core.types.isStringLiteral(nodes[1]))) {
nodes.unshift(_core.types.stringLiteral(""));
if (!types.isStringLiteral(nodes[0]) && !(ignoreToPrimitiveHint && types.isStringLiteral(nodes[1]))) {
nodes.unshift(types.stringLiteral(""));
}

@@ -104,3 +98,3 @@ let root = nodes[0];

for (let i = 1; i < nodes.length; i++) {
root = _core.types.binaryExpression("+", root, nodes[i]);
root = types.binaryExpression("+", root, nodes[i]);
}

@@ -115,4 +109,4 @@ } else if (nodes.length > 1) {

});
exports.default = _default;
export { index as default };
//# sourceMappingURL=index.js.map
{
"name": "@babel/plugin-transform-template-literals",
"version": "7.22.5",
"version": "8.0.0-alpha.0",
"description": "Compile ES2015 template literals to ES5",

@@ -16,3 +16,3 @@ "repository": {

"dependencies": {
"@babel/helper-plugin-utils": "^7.22.5"
"@babel/helper-plugin-utils": "^8.0.0-alpha.0"
},

@@ -23,14 +23,18 @@ "keywords": [

"peerDependencies": {
"@babel/core": "^7.0.0-0"
"@babel/core": "^8.0.0-alpha.0"
},
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/helper-plugin-test-runner": "^7.22.5"
"@babel/core": "^8.0.0-alpha.0",
"@babel/helper-plugin-test-runner": "^8.0.0-alpha.0"
},
"homepage": "https://babel.dev/docs/en/next/babel-plugin-transform-template-literals",
"engines": {
"node": ">=6.9.0"
"node": "^16.20.0 || ^18.16.0 || >=20.0.0"
},
"author": "The Babel Team (https://babel.dev/team)",
"type": "commonjs"
"exports": {
".": "./lib/index.js",
"./package.json": "./package.json"
},
"type": "module"
}

@@ -5,3 +5,3 @@ # @babel/plugin-transform-template-literals

See our website [@babel/plugin-transform-template-literals](https://babeljs.io/docs/en/babel-plugin-transform-template-literals) for more information.
See our website [@babel/plugin-transform-template-literals](https://babeljs.io/docs/babel-plugin-transform-template-literals) for more information.

@@ -8,0 +8,0 @@ ## Install

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc