Files
lodash/_SetCache.js
John-David Dalton ce0b51888c Bump to v4.7.0.
2016-03-31 00:36:47 -07:00

26 lines
500 B
JavaScript

import MapCache from './_MapCache';
import cachePush from './_cachePush';
/**
*
* Creates a set cache object to store unique values.
*
* @private
* @constructor
* @param {Array} [values] The values to cache.
*/
function SetCache(values) {
var index = -1,
length = values ? values.length : 0;
this.__data__ = new MapCache;
while (++index < length) {
this.push(values[index]);
}
}
// Add methods to `SetCache`.
SetCache.prototype.push = cachePush;
export default SetCache;