mirror of
https://github.com/10h30/odin-javascript-exercises.git
synced 2026-07-12 11:16:09 +09:00
remove timer and simon
This commit is contained in:
+10
@@ -0,0 +1,10 @@
|
||||
'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();
|
||||
Reference in New Issue
Block a user