You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
typesetting/pitfall/pdfkit/node_modules/derequire
Matthew Butterick 3f36e2ce2c porting 7 years ago
..
node_modules porting 7 years ago
test porting 7 years ago
.npmignore porting 7 years ago
index.js porting 7 years ago
package.json porting 7 years ago
readme.md porting 7 years ago

readme.md

derequire

npm install derequire
var derequire = require('derequire');
var transformedCode = derequire(code, /*tokenTo=*/'_dereq_', /*tokenFrom=*/'require');

takes a string of code and replaces all instances of the identifier tokenFrom (default 'require') and replaces them with tokenTo (default '_dereq_') but only if they are functional arguments and subsequent uses of said argument, then returnes the code.

Note: in order to avoid quite a few headaches the token you're changing from and the token you're changing to need to be the same length.