a zip code crypto-currency system good for red ONLY

NodeTargetPlugin.js 348B

12345678910111213141516
  1. /*
  2. MIT License http://www.opensource.org/licenses/mit-license.php
  3. Author Tobias Koppers @sokra
  4. */
  5. "use strict";
  6. const ExternalsPlugin = require("../ExternalsPlugin");
  7. class NodeTargetPlugin {
  8. apply(compiler) {
  9. new ExternalsPlugin("commonjs", Object.keys(process.binding("natives"))).apply(compiler);
  10. }
  11. }
  12. module.exports = NodeTargetPlugin;