Files
lodash/_Hash.js
John-David Dalton 24a4285b70 Bump to v4.2.0.
2016-02-02 00:06:39 -08:00

18 lines
398 B
JavaScript

var nativeCreate = require('./_nativeCreate');
/** Used for built-in method references. */
var objectProto = 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;