deno.land / x / lodash@4.17.19 / npm-package / _initCloneObject.js

_initCloneObject.js
نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
var baseCreate = require('./_baseCreate'), getPrototype = require('./_getPrototype'), isPrototype = require('./_isPrototype');
/** * Initializes an object clone. * * @private * @param {Object} object The object to clone. * @returns {Object} Returns the initialized clone. */function initCloneObject(object) { return (typeof object.constructor == 'function' && !isPrototype(object)) ? baseCreate(getPrototype(object)) : {};}
module.exports = initCloneObject;
lodash

Version Info

Tagged at
3 years ago

External Dependencies

No external dependencies 🎉