UNPKG

231 BJavaScriptView Raw
1// Copyright 2017-2022 @polkadot/util authors & contributors
2// SPDX-License-Identifier: Apache-2.0
3
4/**
5 * @name isArray
6 * @summary Tests for a Array instance.
7 */
8export function isArray(value) {
9 return Array.isArray(value);
10}
\No newline at end of file