Babel
  • Docs
  • Setup
  • Try it out
  • Videos
  • Blog
  • Donate
  • Team
  • GitHub
Edit

@babel/plugin-transform-inline-consecutive-adds

Example

In

const foo = {};
foo.a = 42;
foo.b = ["hi"];
foo.c = bar();
foo.d = "str";

...
const bar = [];
bar.push(1);
bar.push(2);

Out

const foo = {
  a: 42,
  b: ["hi"],
  c: bar(),
  d: "str"
};

...
const bar = [1, 2];

Installation

npm install babel-plugin-transform-inline-consecutive-adds --save-dev

Usage

With a configuration file (Recommended)

{
  "plugins": ["transform-inline-consecutive-adds"]
}

Via CLI

babel --plugins transform-inline-consecutive-adds script.js

Via Node API

require("@babel/core").transform("code", {
  plugins: ["transform-inline-consecutive-adds"]
});
  • Example
  • Installation
  • Usage
    • With a configuration file (Recommended)
    • Via CLI
    • Via Node API
Babel
Docs
Learn ES2015
Community
VideosUser ShowcaseStack OverflowSlack ChannelTwitter
More
BlogGitHub OrgGitHub RepoWebsite RepoOld 6.x SiteOld 5.x Site