Skip to content
Snippets Groups Projects

refactor: statistics on result set

Merged Sjoerd requested to merge feat/statistics into main
15 files
+ 433
0
Compare changes
  • Side-by-side
  • Inline
Files
15
import { ArrayStats } from '../../statistics.types';
const updateArrayStats = (stats: ArrayStats, value: any[]) => {
stats.length = value.length;
};
export { updateArrayStats };
Loading