1 2 3 4 5
module.exports = function cloneObject(obj) { const cloned = Object.create(obj); Object.assign(cloned, obj); return cloned; };