mirror of
https://github.com/Xevion/100prisoners.git
synced 2025-12-17 22:11:09 -06:00
Project init
This commit is contained in:
2
src/utils/helpers.ts
Normal file
2
src/utils/helpers.ts
Normal 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);
|
||||
Reference in New Issue
Block a user