mirror of
https://gitlab.com/upRootNutrition/zookeeper.git
synced 2025-08-09 18:34:39 -05:00
feat: init
This commit is contained in:
parent
8379d09058
commit
2cfa016090
2929 changed files with 299087 additions and 3 deletions
17
node_modules/lodash/_baseAssign.js
generated
vendored
Normal file
17
node_modules/lodash/_baseAssign.js
generated
vendored
Normal file
|
@ -0,0 +1,17 @@
|
|||
var copyObject = require('./_copyObject'),
|
||||
keys = require('./keys');
|
||||
|
||||
/**
|
||||
* The base implementation of `_.assign` without support for multiple sources
|
||||
* or `customizer` functions.
|
||||
*
|
||||
* @private
|
||||
* @param {Object} object The destination object.
|
||||
* @param {Object} source The source object.
|
||||
* @returns {Object} Returns `object`.
|
||||
*/
|
||||
function baseAssign(object, source) {
|
||||
return object && copyObject(source, keys(source), object);
|
||||
}
|
||||
|
||||
module.exports = baseAssign;
|
Loading…
Add table
Add a link
Reference in a new issue