feat(WEB-170): edit profile view
This commit is contained in:
6
utils/rangeArray.ts
Normal file
6
utils/rangeArray.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
export function rangeArray(start: number, stop: number, step: number = 1) {
|
||||
return Array.from(
|
||||
{ length: (stop - start) / step + 1 },
|
||||
(value, index) => start + index * step
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user