chenrui  c2abfadd11 add 3 anos atrás
..
lib c2abfadd11 add 3 anos atrás
.npmignore c2abfadd11 add 3 anos atrás
README.md c2abfadd11 add 3 anos atrás
package.json c2abfadd11 add 3 anos atrás

README.md

babel-plugin-syntax-decorators

Allow parsing of decorators.

Installation

$ npm install babel-plugin-syntax-decorators

Usage

Via .babelrc (Recommended)

.babelrc

{
  "plugins": ["syntax-decorators"]
}

Via CLI

$ babel --plugins syntax-decorators script.js

Via Node API

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