You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

пре 3 година
123456789
  1. 'use strict';
  2. var fs = require('fs');
  3. var stripBom = require('strip-bom');
  4. module.exports = function (module, filename) {
  5. var content = fs.readFileSync(filename, 'utf8');
  6. module._compile(stripBom(content), filename);
  7. };