mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-31 17:38:48 +00:00
react app
This commit is contained in:
24
react-app/node_modules/lodash/internal/MapCache.js
generated
vendored
Normal file
24
react-app/node_modules/lodash/internal/MapCache.js
generated
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
var mapDelete = require('./mapDelete'),
|
||||
mapGet = require('./mapGet'),
|
||||
mapHas = require('./mapHas'),
|
||||
mapSet = require('./mapSet');
|
||||
|
||||
/**
|
||||
* Creates a cache object to store key/value pairs.
|
||||
*
|
||||
* @private
|
||||
* @static
|
||||
* @name Cache
|
||||
* @memberOf _.memoize
|
||||
*/
|
||||
function MapCache() {
|
||||
this.__data__ = {};
|
||||
}
|
||||
|
||||
// Add functions to the `Map` cache.
|
||||
MapCache.prototype['delete'] = mapDelete;
|
||||
MapCache.prototype.get = mapGet;
|
||||
MapCache.prototype.has = mapHas;
|
||||
MapCache.prototype.set = mapSet;
|
||||
|
||||
module.exports = MapCache;
|
Reference in New Issue
Block a user