riku
2025-09-11 307b17ef15c73a071912a262834f2a5f68e1fa87
src/utils/expand/expand.js
@@ -24,3 +24,9 @@
  }
  return fmt;
};
Array.prototype.lastCount = function (size) {
  const l = this.length;
  const s = size > this.length ? 0 : this.length - size;
  return this.slice(s, l);
};