added whole system from ola4doc
This commit is contained in:
+9
@@ -0,0 +1,9 @@
|
||||
'use strict';
|
||||
|
||||
var forEach = Array.prototype.forEach, create = Object.create;
|
||||
|
||||
module.exports = function (arg/*, …args*/) {
|
||||
var set = create(null);
|
||||
forEach.call(arguments, function (name) { set[name] = true; });
|
||||
return set;
|
||||
};
|
||||
Reference in New Issue
Block a user