/
githubmirror
/
lodash
Обзор
Документация
Войти
/
githubmirror
/
lodash
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
4.18.0-amd
_mapCacheClear.js
20 строк
397 B
John-David Dalton
Bump to v4.16.0.
18 сен 2016, 08:24
18 сен 2016, 08:24
0b9ddff
Код
Авторство
О чём код?
define(['./_Hash', './_ListCache', './_Map'], function(Hash, ListCache, Map) { /** * Removes all key-value entries from the map. * * @private * @name clear * @memberOf MapCache */ function mapCacheClear() { this.size = 0; this.__data__ = { 'hash': new Hash, 'map': new (Map || ListCache), 'string': new Hash }; } return mapCacheClear; });