shichen b6c5ecc67a init пре 11 месеци
..
lib b6c5ecc67a init пре 11 месеци
.npmignore b6c5ecc67a init пре 11 месеци
README.md b6c5ecc67a init пре 11 месеци
package.json b6c5ecc67a init пре 11 месеци

README.md

babel-plugin-syntax-do-expressions

Allow parsing of do expressions.

Installation

$ npm install babel-plugin-syntax-do-expressions

Usage

Via .babelrc (Recommended)

.babelrc

{
  "plugins": ["syntax-do-expressions"]
}

Via CLI

$ babel --plugins syntax-do-expressions script.js

Via Node API

require("babel-core").transform("code", {
  plugins: ["syntax-do-expressions"]
});