initCloneObject.js 426 Bytes
Newer Older
徐立's avatar
徐立 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
import isPrototype from './isPrototype.js'

/**
 * Initializes an object clone.
 * 初始化对象克隆。
 * @private
 * @param {Object} object 要克隆的对象。
 * @returns {Object} 返回初始化的克隆。
 */
function initCloneObject(object) {
  return (typeof object.constructor === 'function' && !isPrototype(object))
    ? Object.create(Object.getPrototypeOf(object))
    : {}
}

export default initCloneObject