added whole system from ola4doc
This commit is contained in:
+17
@@ -0,0 +1,17 @@
|
||||
'use strict';
|
||||
|
||||
var forEach = Array.prototype.forEach, create = Object.create;
|
||||
|
||||
var process = function (src, obj) {
|
||||
var key;
|
||||
for (key in src) obj[key] = src[key];
|
||||
};
|
||||
|
||||
module.exports = function (options/*, …options*/) {
|
||||
var result = create(null);
|
||||
forEach.call(arguments, function (options) {
|
||||
if (options == null) return;
|
||||
process(Object(options), result);
|
||||
});
|
||||
return result;
|
||||
};
|
||||
Reference in New Issue
Block a user