UNPKG
dxex
Version:
latest (0.0.10)
0.0.10
0.0.9
0.0.8
0.0.7
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
Create and parse sysex for Yamaha DX synthesizers.
dxex
/
dist
/
utils.d.ts
8 lines
(7 loc)
•
242 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
/** * Chunk arrays into n subarrays. *
@param
{
any[]
} arr Array to split into chunks. *
@param
{
number
} n The number of chunks to split the array into. *
@return
{
any[]
} */
export
declare
function
chunkify
(
arr
:
any
[],
n
:
number
):
any
[];