mirror of
https://github.com/thangisme/notes.git
synced 2024-11-01 00:37:33 -04:00
11 lines
217 B
JavaScript
11 lines
217 B
JavaScript
|
'use strict';
|
||
|
|
||
|
var blacklist = [
|
||
|
'freelist',
|
||
|
'sys'
|
||
|
];
|
||
|
|
||
|
module.exports = Object.keys(process.binding('natives')).filter(function (el) {
|
||
|
return !/^_|^internal|\//.test(el) && blacklist.indexOf(el) === -1;
|
||
|
}).sort();
|