X-Git-Url: http://www.aleph1.co.uk/gitweb/?a=blobdiff_plain;ds=sidebyside;f=node_modules%2Funcss%2Fnode_modules%2Flodash%2Finternal%2FHash.js;fp=node_modules%2Funcss%2Fnode_modules%2Flodash%2Finternal%2FHash.js;h=d97721969ba6e3312607ccd643af1e33b21d9d8c;hb=a2bd1bf0c2c1f1a17d188f4dc0726a45494cefae;hp=0000000000000000000000000000000000000000;hpb=57c063afa3f66b07c4bbddc2d6129a96d90f0aad;p=yaffs-website diff --git a/node_modules/uncss/node_modules/lodash/internal/Hash.js b/node_modules/uncss/node_modules/lodash/internal/Hash.js new file mode 100644 index 000000000..d97721969 --- /dev/null +++ b/node_modules/uncss/node_modules/lodash/internal/Hash.js @@ -0,0 +1,17 @@ +var nativeCreate = require('./nativeCreate'); + +/** Used for built-in method references. */ +var objectProto = global.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;