UNPKG

132 BJavaScriptView Raw
1/**
2 * @name isArray
3 * @summary Tests for a Array instance.
4 */
5export function isArray(value) {
6 return Array.isArray(value);
7}
\No newline at end of file