Files
lodash/_Hash.js
John-David Dalton 94ba2e24e8 Bump to v4.4.0.
2016-02-15 20:25:07 -08:00

19 lines
409 B
JavaScript

import nativeCreate from './_nativeCreate';
/** Used for built-in method references. */
var objectProto = Object.prototype;
/**
* Creates an 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;
export default Hash;