JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 52691
  • Score
    100M100P100Q147682F
  • License MIT

remove requires

Package Exports

  • derequire

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (derequire) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

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.