mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-05-22 14:52:35 +02: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;
|