@qvant/qui-max
Version:
A Vue 3 Design system for Web.
18 lines (17 loc) • 589 B
JavaScript
import ListCache from "./_ListCache.js";
import stackClear from "./_stackClear.js";
import stackDelete from "./_stackDelete.js";
import stackGet from "./_stackGet.js";
import stackHas from "./_stackHas.js";
import stackSet from "./_stackSet.js";
function Stack(entries) {
var data = this.__data__ = new ListCache(entries);
this.size = data.size;
}
Stack.prototype.clear = stackClear;
Stack.prototype["delete"] = stackDelete;
Stack.prototype.get = stackGet;
Stack.prototype.has = stackHas;
Stack.prototype.set = stackSet;
export { Stack as default };
//# sourceMappingURL=_Stack.js.map