mirror of
https://github.com/mgerb/mywebsite
synced 2026-01-12 02:42:48 +00:00
updated bunch of file paths and changed the way posts are loaded
This commit is contained in:
17
node_modules/es5-ext/object/normalize-options.js
generated
vendored
Normal file
17
node_modules/es5-ext/object/normalize-options.js
generated
vendored
Normal file
@@ -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