Test if a value is a valid typed array length.
To use in Observable,
isTypedArrayLength = require( 'https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-typed-array-length@umd/browser.js' )
To vendor stdlib functionality and avoid installing dependency trees for Node.js, you can use the UMD server build:
var isTypedArrayLength = require( 'path/to/vendor/umd/assert-is-typed-array-length/index.js' )
To include the bundle in a webpage,
<script type="text/javascript" src="https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-typed-array-length@umd/browser.js"></script>
If no recognized module system is present, access bundle contents via the global scope:
<script type="text/javascript">
(function () {
window.isTypedArrayLength;
})();
</script>
Tests if a value is a valid typed array length.
var bool = isTypedArrayLength( 5 );
// returns true
bool = isTypedArrayLength( -1 );
// returns false
bool = isTypedArrayLength( 2.0e200 );
// returns false
bool = isTypedArrayLength( 3.14 );
// returns false
bool = isTypedArrayLength( null );
// returns false
- A valid
length
property for a typed array is any integer value on the interval[0, 2^53-1]
.
<!DOCTYPE html>
<html lang="en">
<body>
<script type="text/javascript" src="https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-typed-array-length@umd/browser.js"></script>
<script type="text/javascript">
(function () {
var bool = isTypedArrayLength( 5 );
// returns true
bool = isTypedArrayLength( 0 );
// returns true
bool = isTypedArrayLength( 2.0e200 );
// returns false
bool = isTypedArrayLength( 5.256 );
// returns false
bool = isTypedArrayLength( 1.0/0.0 );
// returns false
bool = isTypedArrayLength( -1.0/0.0 );
// returns false
bool = isTypedArrayLength( NaN );
// returns false
bool = isTypedArrayLength( '5' );
// returns false
bool = isTypedArrayLength( null );
// returns false
})();
</script>
</body>
</html>
@stdlib/assert-is-array-length
: test if a value is a valid array length.@stdlib/assert-is-typed-array
: test if a value is a typed array.
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-2023. The Stdlib Authors.