Removed modules/contrib/media module to allow update to the core media module
[yaffs-website] / node_modules / uncss / node_modules / lodash / internal / Hash.js
1 var nativeCreate = require('./nativeCreate');
2
3 /** Used for built-in method references. */
4 var objectProto = global.Object.prototype;
5
6 /**
7  * Creates an hash object.
8  *
9  * @private
10  * @returns {Object} Returns the new hash object.
11  */
12 function Hash() {}
13
14 // Avoid inheriting from `Object.prototype` when possible.
15 Hash.prototype = nativeCreate ? nativeCreate(null) : objectProto;
16
17 module.exports = Hash;