X7ROOT File Manager
Current Path:
/usr/local/lib/node_modules/npm/node_modules/graceful-fs
usr
/
local
/
lib
/
node_modules
/
npm
/
node_modules
/
graceful-fs
/
📁
..
📄
LICENSE
(791 B)
📄
clone.js
(496 B)
📄
graceful-fs.js
(12.38 KB)
📄
legacy-streams.js
(2.59 KB)
📄
package.json
(1.01 KB)
📄
polyfills.js
(9.9 KB)
Editing: 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 }
Upload File
Create Folder