Test if a value is an array.
To use in Observable,
isArray = require( 'https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-array@umd/browser.js' )
To vendor stdlib functionality and avoid installing dependency trees for Node.js, you can use the UMD server build:
var isArray = require( 'path/to/vendor/umd/assert-is-array/index.js' )
To include the bundle in a webpage,
<script type="text/javascript" src="https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-array@umd/browser.js"></script>
If no recognized module system is present, access bundle contents via the global scope:
<script type="text/javascript">
(function () {
window.isArray;
})();
</script>
Tests if a value is an array
.
var bool = isArray( [] );
// returns true
<!DOCTYPE html>
<html lang="en">
<body>
<script type="text/javascript" src="https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-array@umd/browser.js"></script>
<script type="text/javascript">
(function () {
var bool = isArray( [ 1, 2, 3, 4 ] );
// returns true
bool = isArray( {} );
// returns false
})();
</script>
</body>
</html>
@stdlib/assert/is-array-like
: test if a value is array-like.
This package is part of stdlib, a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more.
For more information on the project, filing bug reports and feature requests, and guidance on how to develop stdlib, see the main project repository.
See LICENSE.
Copyright © 2016-2022. The Stdlib Authors.