我编写了一个函数来推送一个条目,然后缩小它的大小,如果它很大,就像这样:
public add(log) {
this.logs.push(log);
if (this.logs.length > this.configA) {
this.logs = this.logs.slice(-this.configB);
}
}
但我无法想出任何有关命名configA和configB的好主意。有想法吗?我认为逻辑本身是常用的。或者我应该使用一些提供类似容器的npm模块吗?