99523e064c8bd557a11f4e8805bdace3c5d19adb21ae3f69b4f95d32f5261b9a9a08fc5ef59aba21a2a5ad33185378eef37d57e0d1d9f0a688332c8ef7a377 216 B

12345678910111213
  1. /**
  2. * Removes all key-value entries from the list cache.
  3. *
  4. * @private
  5. * @name clear
  6. * @memberOf ListCache
  7. */
  8. function listCacheClear() {
  9. this.__data__ = [];
  10. this.size = 0;
  11. }
  12. export default listCacheClear;