canonical
Version:
Canonical code style linter and formatter for JavaScript, SCSS, CSS and JSON.
20 lines (17 loc) • 321 B
JavaScript
var Hash = require('./_Hash'),
Map = require('./_Map');
/**
* Removes all key-value entries from the map.
*
* @private
* @name clear
* @memberOf MapCache
*/
function mapClear() {
this.__data__ = {
'hash': new Hash,
'map': Map ? new Map : [],
'string': new Hash
};
}
module.exports = mapClear;