move move frontend to progress-test
This commit is contained in:
5
app/javascript/utils/math/range.ts
Normal file
5
app/javascript/utils/math/range.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
export const range = (start: number, end: number) => {
|
||||
const length = end - start;
|
||||
|
||||
return Array.from({ length }, (_, i) => start + i);
|
||||
};
|
||||
Reference in New Issue
Block a user