mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-28 09:14:05 +00:00
13 lines
226 B
JavaScript
13 lines
226 B
JavaScript
class LimitArray {
|
|
limit = 100;
|
|
array = [];
|
|
|
|
add(item) {
|
|
this.array.push(item);
|
|
if (this.array.length > this.limit) {
|
|
this.array.shift();
|
|
}
|
|
}
|
|
}
|
|
|
|
module.exports = LimitArray;
|