UNPKG

@polkadot/util

Version:
10 lines (9 loc) 231 B
// Copyright 2017-2022 @polkadot/util authors & contributors // SPDX-License-Identifier: Apache-2.0 /** * @name isArray * @summary Tests for a Array instance. */ export function isArray(value) { return Array.isArray(value); }