UNPKG
@d1g1tal/collections
Version:
latest (2.2.1)
2.2.1
2.2.0
2.1.6
2.1.5
2.1.4
2.1.2
2.1.1
2.1.0
2.0.3
2.0.2
2.0.1
2.0.0
1.0.1
1.0.0
0.2.5
0.2.4
0.2.3
0.2.2
0.2.1
0.2.0
0.1.2
0.1.1
0.1.0
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
JavaScript Collections ES Modules
github.com/D1g1talEntr0py/collections
D1g1talEntr0py/collections
@d1g1tal/collections
/
dist
/
stack.js
3 lines
(2 loc)
•
275 B
JavaScript
View Raw
1
2
3
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