refactor-plugin-unsafe
v2.0.1
Published
This is a plugin for `shift-refactor`. These methods are useful and commonly used but the implementations are not perfect and may transform JavaScript incorrectly.
Downloads
26
Readme
Shift Refactor Plugin: Unsafe methods
This is a plugin for shift-refactor
. These methods are useful and commonly used but the implementations are not perfect and may transform JavaScript incorrectly.
Installation
$ npm install refactor-plugin-unsafe
Usage
const {refactor} = require('shift-refactor');
const unsafeMethods = require('refactor-plugin-unsafe');
const src = `/* js source */`;
const $script = refactor(src, unsafeMethods);
API
Methods
.method(namePairs)
Rename a list of variables.
Example
$script.massRename([['fromName', 'toName']]);