setup-maven-cached/node_modules/underscore/modules/clone.js

10 lines
290 B
JavaScript
Raw Permalink Normal View History

2022-06-28 16:39:30 +08:00
import isObject from './isObject.js';
import isArray from './isArray.js';
import extend from './extend.js';
// Create a (shallow-cloned) duplicate of an object.
export default function clone(obj) {
if (!isObject(obj)) return obj;
return isArray(obj) ? obj.slice() : extend({}, obj);
}