UNPKG

@seniorsistemas/senior-sam

Version:
16 lines 295 B
"use strict"; module.exports = class List { constructor() { this.items = []; } size() { return this.items.length; } add(value) { this.items.push(value); } get(index) { return this.items[index]; } }; //# sourceMappingURL=List.js.map