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

@babel/plugin-transform-template-literals

Compile ES2015 template literals to ES5


Version published
Weekly downloads
19M
decreased by-19.32%
Maintainers
4
Created
Weekly downloads
 

Package description

What is @babel/plugin-transform-template-literals?

The @babel/plugin-transform-template-literals package is a Babel plugin that transforms ES2015 template literals into the equivalent ES5 string concatenation syntax. This is particularly useful for ensuring compatibility with older browsers or environments that do not support template literals.

What are @babel/plugin-transform-template-literals's main functionalities?

Template Literal Transformation

Converts template literals into string concatenation to ensure ES5 compatibility.

`Hello, ${name}!` // Transforms into 'Hello, ' + name + '!'

Tagged Template Literal Transformation

Transforms tagged template literals into a function call with an array of string literals and the template substitutions.

tagFunction`Hello, ${name}!` // Transforms into tagFunction(['Hello, ', '!'], name)

Other packages similar to @babel/plugin-transform-template-literals

Readme

Source

@babel/plugin-transform-template-literals

Compile ES2015 template literals to ES5

Example

In

`foo${bar}`;

Out

"foo".concat(bar);

Installation

npm install --save-dev @babel/plugin-transform-template-literals

Usage

.babelrc

Without options:

{
  "plugins": ["@babel/transform-template-literals"]
}

With options:

{
  "plugins": [
    ["@babel/transform-template-literals", {
      "loose": true
    }]
  ]
}

Via CLI

babel --plugins @babel/transform-template-literals script.js

Via Node API

require("@babel/core").transform("code", {
  plugins: ["@babel/transform-template-literals"]
});

Options

loose

boolean, defaults to false.

When true, tagged template literal objects aren't frozen. All template literal expressions and quasis are combined with the + operator instead of with String.prototype.concat.

When false or not set, all template literal expressions and quasis are combined with String.prototype.concat. It will handle cases with Symbol.toPrimitive correctly and throw correctly if template literal expression is a Symbol(). See babel/babel#5791.

In

`foo${bar}`;

Out

"foo" + bar;

Keywords

FAQs

Package last updated on 03 Nov 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

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