UNPKG
@n3okill/utils
Version:
latest (2.0.4)
2.0.4
2.0.3
2.0.0
1.1.1
1.1.0
1.0.5
1.0.4
1.0.2
1.0.1
Many javascript helpers
github.com/n3okill/utils
n3okill/utils
@n3okill/utils
/
dist
/
mjs
/
array
/
combine.d.ts
7 lines
(6 loc)
•
201 B
TypeScript
View Raw
1
2
3
4
5
6
7
/** * Combine multiple arrays into a single one *
@param
arrays The arrays to be combined *
@returns
Combined array */
export
declare
function
combine<T>(...
arrays
:
Array
<
Array
<T> | T>):
Array
<T>;