1
Fork 0

typescript(loopover): chore: removed the testing stuff (for now)

Signed-off-by: prescientmoon <git@moonythm.dev>
This commit is contained in:
Matei Adriel 2019-11-25 17:34:29 +02:00 committed by prescientmoon
parent 90b404f68b
commit a156a02f94
Signed by: prescientmoon
SSH key fingerprint: SHA256:UUF9JT2s8Xfyv76b8ZuVL7XrmimH4o49p4b+iexbVH4
3 changed files with 0 additions and 70 deletions
typescript/loopover/src/helpers

View file

@ -1,6 +0,0 @@
import { rangeArray } from './rangeArray'
export const chunkX = <T>(arr: T[], width: number, height: number): T[][] =>
rangeArray(0, this.height).map(index =>
arr.slice(index * height, (index + 1) * width)
)