Skip to main content

@babel/plugin-transform-property-mutators

info

This plugin is included in @babel/preset-env

Example

In

JavaScript
var foo = {
get bar() {
return this._bar;
},
set bar(value) {
this._bar = value;
},
};

Out

JavaScript
var foo = Object.defineProperties(
{},
{
bar: {
get: function() {
return this._bar;
},
set: function(value) {
this._bar = value;
},
configurable: true,
enumerable: true,
},
}
);

Installation

npm install --save-dev @babel/plugin-transform-property-mutators

Usage

babel.config.json
{
"plugins": ["@babel/plugin-transform-property-mutators"]
}

Via CLI

Shell
babel --plugins @babel/plugin-transform-property-mutators script.js

Via Node API

JavaScript
require("@babel/core").transformSync("code", {
plugins: ["@babel/plugin-transform-property-mutators"],
});