|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
349 bytes
|
| Line | |
|---|
| 1 | 'use strict';
|
|---|
| 2 | const {builtinModules} = require('module');
|
|---|
| 3 |
|
|---|
| 4 | const ignoreList = [
|
|---|
| 5 | 'sys'
|
|---|
| 6 | ];
|
|---|
| 7 |
|
|---|
| 8 | // eslint-disable-next-line node/no-deprecated-api
|
|---|
| 9 | module.exports = (builtinModules || (process.binding ? Object.keys(process.binding('natives')) : []) || [])
|
|---|
| 10 | .filter(x => !/^_|^(internal|v8|node-inspect)\/|\//.test(x) && !ignoreList.includes(x))
|
|---|
| 11 | .sort();
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.