vue-app-sdk
Version:
10 lines (9 loc) • 327 B
JavaScript
import baseCreate from "./_baseCreate.js";
import getPrototype from "./_getPrototype.js";
import isPrototype from "./_isPrototype.js";
function initCloneObject(object) {
return typeof object.constructor == "function" && !isPrototype(object) ? baseCreate(getPrototype(object)) : {};
}
export {
initCloneObject as default
};