UNPKG

babel-plugin-transform-es5-property-mutators

Version:

Compile ES5 property mutator shorthand syntax to Object.defineProperty

62 lines (45 loc) 967 B
# babel-plugin-transform-es5-property-mutators > This plugin allows Babel to transform [object initializer mutators](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Object_initializer#Method_definitions) into `Object.defineProperties`. ## Example **In** ```javascript var foo = { get bar() { return "bar"; } }; ``` **Out** ```javascript var foo = Object.defineProperties({}, { bar: { get: function () { return "bar"; }, enumerable: true, configurable: true } }); ``` ## Installation ```sh npm install --save-dev babel-plugin-transform-es5-property-mutators ``` ## Usage ### Via `.babelrc` (Recommended) **.babelrc** ```json { "plugins": ["transform-es5-property-mutators"] } ``` ### Via CLI ```sh babel --plugins transform-es5-property-mutators script.js ``` ### Via Node API ```javascript require("babel-core").transform("code", { plugins: ["transform-es5-property-mutators"] }); ```