UNPKG

@57block/stellar-resource-usage

Version:

A library that provides convenient ways to monitor and analyze the resources consumed by smart contracts during execution

19 lines (16 loc) 484 B
import baseCreate from './_baseCreate.js'; import getPrototype from './_getPrototype.js'; import isPrototype from './_isPrototype.js'; /** * 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)) : {}; } export default initCloneObject;