Version 1
[yaffs-website] / node_modules / fs-extra / node_modules / graceful-fs / fs.js
diff --git a/node_modules/fs-extra/node_modules/graceful-fs/fs.js b/node_modules/fs-extra/node_modules/graceful-fs/fs.js
new file mode 100644 (file)
index 0000000..8ad4a38
--- /dev/null
@@ -0,0 +1,21 @@
+'use strict'
+
+var fs = require('fs')
+
+module.exports = clone(fs)
+
+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
+}