UNPKG

@evil-gauss/core

Version:
17 lines 346 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Stack = void 0; class Stack { _array = []; get items() { return this._array; } in(item) { this._array.push(item); } out() { this._array.pop(); } } exports.Stack = Stack; //# sourceMappingURL=stack.model.js.map