Files
lodash/_Hash.js
John-David Dalton 57f1942947 Bump to v4.9.0.
2016-04-08 01:30:11 -07:00

20 lines
439 B
JavaScript

define(['./_nativeCreate'], function(nativeCreate) {
/** Used for built-in method references. */
var objectProto = Object.prototype;
/**
* Creates a hash object.
*
* @private
* @constructor
* @returns {Object} Returns the new hash object.
*/
function Hash() {}
// Avoid inheriting from `Object.prototype` when possible.
Hash.prototype = nativeCreate ? nativeCreate(null) : objectProto;
return Hash;
});