Files
lodash/_Hash.js
John-David Dalton b7e3b3febd Bump to v4.9.0.
2016-04-08 01:32:35 -07:00

19 lines
408 B
JavaScript

import nativeCreate from './_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;
export default Hash;