deno.land / x / lodash@4.17.19 / npm-package / _Stack.js

نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
var ListCache = require('./_ListCache'), stackClear = require('./_stackClear'), stackDelete = require('./_stackDelete'), stackGet = require('./_stackGet'), stackHas = require('./_stackHas'), stackSet = require('./_stackSet');
/** * Creates a stack cache object to store key-value pairs. * * @private * @constructor * @param {Array} [entries] The key-value pairs to cache. */function Stack(entries) { var data = this.__data__ = new ListCache(entries); this.size = data.size;}
// Add methods to `Stack`.Stack.prototype.clear = stackClear;Stack.prototype['delete'] = stackDelete;Stack.prototype.get = stackGet;Stack.prototype.has = stackHas;Stack.prototype.set = stackSet;
module.exports = Stack;
lodash

Version Info

Tagged at
3 years ago

External Dependencies

No external dependencies 🎉