Version 1
[yaffs-website] / node_modules / uncss / node_modules / lodash / internal / Hash.js
diff --git a/node_modules/uncss/node_modules/lodash/internal/Hash.js b/node_modules/uncss/node_modules/lodash/internal/Hash.js
new file mode 100644 (file)
index 0000000..d977219
--- /dev/null
@@ -0,0 +1,17 @@
+var nativeCreate = require('./nativeCreate');
+
+/** Used for built-in method references. */
+var objectProto = global.Object.prototype;
+
+/**
+ * Creates an hash object.
+ *
+ * @private
+ * @returns {Object} Returns the new hash object.
+ */
+function Hash() {}
+
+// Avoid inheriting from `Object.prototype` when possible.
+Hash.prototype = nativeCreate ? nativeCreate(null) : objectProto;
+
+module.exports = Hash;