Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

babel-plugin-transform-string-join

laysent17MIT1.0.2

Babel plugin that join strings and template strings in compilation when possible

string, concat, join, babel-plugin

readme

babel-plugin-transform-string-join

Build Status

Babel plugin that will join strings and template strings in compilation time whenever it's possible.

Examples

Array.proptotype.join

You can use Array.proptotype.join to join list of strings and template strings together.

In

const className = 'container';
const html = [
  `<div class=${className}>`,
    '<span>Hello World</span>',
  '</div>',
].join('');

Out

const html = `<div class=${className}><span>Hello World</span></div>`;

String addition

Also, you can use + to simply concat strings and template strings together.

In

const className = 'container';
const html =
  `<div class=${className}>` +
    '<span>Hello World</span>' +
  '</div>';

Out

const html = `<div class=${className}><span>Hello World</span></div>`;

Installation

$ npm install babel-plugin-transform-string-join

Usage

.babelrc

{
  "plugins": ["transform-string-join"]
}

Via CLI

$ babel --plugins transform-string-join script.js

Via Node API

require('babel-core').transform('code', {
  plugins: ['transform-string-join']
});

License

MIT