25108ad7fd7c34b5acb0ecf690f83bb2e2a37140
[yaffs-website] / node_modules / grunt-legacy-util / node_modules / lodash / _Hash.js
1 var nativeCreate = require('./_nativeCreate');
2
3 /** Used for built-in method references. */
4 var objectProto = 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;