update node_modules

This commit is contained in:
bitkarrot
2022-03-21 00:06:21 -07:00
parent a725bca03a
commit c6038ac85d
1156 changed files with 0 additions and 207393 deletions

23
node_modules/utils-merge/index.js generated vendored
View File

@@ -1,23 +0,0 @@
/**
* Merge object b with object a.
*
* var a = { foo: 'bar' }
* , b = { bar: 'baz' };
*
* merge(a, b);
* // => { foo: 'bar', bar: 'baz' }
*
* @param {Object} a
* @param {Object} b
* @return {Object}
* @api public
*/
exports = module.exports = function(a, b){
if (a && b) {
for (var key in b) {
a[key] = b[key];
}
}
return a;
};