motion
Version:
motion - moving development forward
16 lines (13 loc) • 305 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;