UNPKG

@polkadot/util

Version:
12 lines (11 loc) 412 B
// Copyright 2017-2022 @polkadot/util authors & contributors // SPDX-License-Identifier: Apache-2.0 /** * @summary Utility methods that operates on arrays */ export { arrayChunk } from "./chunk.js"; export { arrayFilter } from "./filter.js"; export { arrayFlatten } from "./flatten.js"; export { arrayRange } from "./range.js"; export { arrayShuffle } from "./shuffle.js"; export { arrayZip } from "./zip.js";