UNPKG

352 BJavaScriptView Raw
1/**
2 * @summary Utility methods that operates on arrays
3 */
4export { arrayChunk } from './chunk.js';
5export { arrayFilter } from './filter.js';
6export { arrayFlatten } from './flatten.js';
7export { arrayRange } from './range.js';
8export { arrayShuffle } from './shuffle.js';
9export { arrayUnzip } from './unzip.js';
10export { arrayZip } from './zip.js';
\No newline at end of file