UNPKG

@polkadot/util

Version:
17 lines (14 loc) 332 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isArray = isArray; // Copyright 2017-2022 @polkadot/util authors & contributors // SPDX-License-Identifier: Apache-2.0 /** * @name isArray * @summary Tests for a Array instance. */ function isArray(value) { return Array.isArray(value); }