mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-23 00:18:01 +00:00
11 lines
230 B
JavaScript
11 lines
230 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.isArray = isArray;
|
|
/**
|
|
* @name isArray
|
|
* @summary Tests for a Array instance.
|
|
*/
|
|
function isArray(value) {
|
|
return Array.isArray(value);
|
|
}
|