Submit
Path:
~
/
/
proc
/
thread-self
/
root
/
opt
/
alt
/
alt-nodejs19
/
root
/
usr
/
lib
/
node_modules
/
npm
/
node_modules
/
graceful-fs
/
File Content:
clone.js
'use strict' module.exports = clone var getPrototypeOf = Object.getPrototypeOf || function (obj) { return obj.__proto__ } function clone (obj) { if (obj === null || typeof obj !== 'object') return obj if (obj instanceof Object) var copy = { __proto__: getPrototypeOf(obj) } 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
791 bytes
0644
clone.js
496 bytes
0644
graceful-fs.js
12680 bytes
0644
legacy-streams.js
2655 bytes
0644
package.json
1031 bytes
0644
polyfills.js
10141 bytes
0644
N4ST4R_ID | Naxtarrr