UNPKG

412 BJavaScriptView Raw
1// Copyright 2017-2022 @polkadot/util authors & contributors
2// SPDX-License-Identifier: Apache-2.0
3
4/**
5 * @summary Utility methods that operates on arrays
6 */
7export { arrayChunk } from "./chunk.js";
8export { arrayFilter } from "./filter.js";
9export { arrayFlatten } from "./flatten.js";
10export { arrayRange } from "./range.js";
11export { arrayShuffle } from "./shuffle.js";
12export { arrayZip } from "./zip.js";
\No newline at end of file