babel-plugin-transform-phonetize
v2.0.0
Published
babel plugin to rename identifiers in a file to randomly generated pronounceable names
Downloads
7
Maintainers
Readme
babel-plugin-transform-phonetize
babel plugin to rename identifiers in a file to randomly generated pronounceable names
Useful for deobfuscation.
Install
npm install babel-plugin-transform-phonetize
Usage
{
"plugins": [
["transform-phonetize", {
"maxLength": 4,
"except": ["idx"]
}]
]
}
Options
maxLength
- Maximum length of the original identifier name. Only names shorter than this length will be renamed. This way variables that already have meaningful names will not be touched. Defaults to3
.except
- Array of identifier names not to rename.