Files
lodash/_listCacheClear.js
John-David Dalton dbe6a9008c Bump to v4.12.0.
2016-05-08 12:30:27 -07:00

13 lines
201 B
JavaScript

/**
* Removes all key-value entries from the list cache.
*
* @private
* @name clear
* @memberOf ListCache
*/
function listCacheClear() {
this.__data__ = [];
}
module.exports = listCacheClear;