Project init

This commit is contained in:
Xevion
2022-12-17 15:57:05 -06:00
parent 35b2011040
commit ea0785cc97
24 changed files with 2710 additions and 0 deletions

2
src/utils/helpers.ts Normal file
View File

@@ -0,0 +1,2 @@
export const range = (start: number, stop: number, step = 1) =>
Array.from({length: (stop - start) / step + 1}, (_, i) => start + i * step);