版博士V2.0程序
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

12 строки
349 B

  1. 'use strict';
  2. const {builtinModules} = require('module');
  3. const ignoreList = [
  4. 'sys'
  5. ];
  6. // eslint-disable-next-line node/no-deprecated-api
  7. module.exports = (builtinModules || (process.binding ? Object.keys(process.binding('natives')) : []) || [])
  8. .filter(x => !/^_|^(internal|v8|node-inspect)\/|\//.test(x) && !ignoreList.includes(x))
  9. .sort();