Submit
Path:
~
/
/
proc
/
self
/
root
/
usr
/
lib
/
node_modules
/
npm
/
node_modules
/
graceful-fs
/
File Content:
clone.js
'use strict' module.exports = clone function clone (obj) { if (obj === null || typeof obj !== 'object') return obj if (obj instanceof Object) var copy = { __proto__: obj.__proto__ } else var copy = Object.create(null) Object.getOwnPropertyNames(obj).forEach(function (key) { Object.defineProperty(copy, key, Object.getOwnPropertyDescriptor(obj, key)) }) return copy }
Submit
FILE
FOLDER
Name
Size
Permission
Action
LICENSE
781 bytes
0644
README.md
4454 bytes
0644
clone.js
401 bytes
0644
graceful-fs.js
8965 bytes
0644
legacy-streams.js
2655 bytes
0644
package.json
2412 bytes
0644
polyfills.js
9519 bytes
0644
N4ST4R_ID | Naxtarrr