0.1.0 • Published 4 years ago
babel-plugin-transform-rename-properties v0.1.0
babel-plugin-transform-rename-properties
Rename JavaScript properties.
Installation
$ yarn add --dev babel-plugin-transform-rename-properties
Example
Input file:
const obj = {
foo: {
bar: 1
},
quux() {
return 2;
}
};
const { foo } = obj;
function quux(obj) {
return obj.foo.bar + obj.quux();
}
.babelrc
:
{
"plugins": [
[
"babel-plugin-transform-rename-properties",
{
"rename": {
"foo": "__FOO__",
"quux": "I HAVE SPACES"
}
}
]
]
}
Output:
const obj = {
__FOO__: {
bar: 1
},
"I HAVE SPACES"() {
return 2;
}
};
const { __FOO__: foo } = obj;
function quux(obj) {
return obj.__FOO__.bar + obj["I HAVE SPACES"]();
}
License
This plugin is licensed under the MIT license. See LICENSE.