lhl 7eff0e2ec0 1-9 3 ay önce
..
lib 7eff0e2ec0 1-9 3 ay önce
.npmignore 7eff0e2ec0 1-9 3 ay önce
README.md 7eff0e2ec0 1-9 3 ay önce
package.json 7eff0e2ec0 1-9 3 ay önce

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"]
});