UNPKG

@d1g1tal/collections

Version:
3 lines (2 loc) 275 B
class s{items;constructor(){this.items=[]}push(t){this.items.push(t)}pop(){return this.items.pop()}peek(){return this.items[this.items.length-1]}isEmpty(){return this.items.length===0}get size(){return this.items.length}}export{s as Stack}; //# sourceMappingURL=stack.js.map