1
0
Fork 0
forked from svrjs/svrjs
This repository has been archived on 2024-11-10. You can view files and clone it, but cannot push or open issues or pull requests.
svrjs/node_modules/graceful-fs/clone.js

24 lines
496 B
JavaScript
Raw Permalink Normal View History

2023-07-29 20:33:28 +02:00
'use strict'
module.exports = clone
2024-05-06 12:40:31 +02:00
var getPrototypeOf = Object.getPrototypeOf || function (obj) {
return obj.__proto__
}
2023-07-29 20:33:28 +02:00
function clone (obj) {
if (obj === null || typeof obj !== 'object')
return obj
if (obj instanceof Object)
2024-05-06 12:40:31 +02:00
var copy = { __proto__: getPrototypeOf(obj) }
2023-07-29 20:33:28 +02:00
else
var copy = Object.create(null)
Object.getOwnPropertyNames(obj).forEach(function (key) {
Object.defineProperty(copy, key, Object.getOwnPropertyDescriptor(obj, key))
})
return copy
}