What is @stdlib/assert-has-float32array-support?
The @stdlib/assert-has-float32array-support package is used to check if the environment supports the Float32Array data type. This can be useful for ensuring compatibility and functionality in environments where Float32Array might not be available.
What are @stdlib/assert-has-float32array-support's main functionalities?
Check Float32Array support
This feature allows you to check if the current environment supports the Float32Array data type. The code sample demonstrates how to use the package to perform this check and log the result.
const hasFloat32ArraySupport = require('@stdlib/assert-has-float32array-support');
if (hasFloat32ArraySupport()) {
console.log('Float32Array is supported.');
} else {
console.log('Float32Array is not supported.');
}
Other packages similar to @stdlib/assert-has-float32array-support
is-typedarray
The is-typedarray package checks if a given value is a typed array, including Float32Array. While it offers broader functionality by checking for various typed arrays, it can also be used to determine if Float32Array is supported by attempting to create an instance and catching any errors.
About stdlib...
We believe in a future in which the web is a preferred environment for numerical computation. To help realize this future, we've built stdlib. stdlib is a standard library, with an emphasis on numerical and scientific computation, written in JavaScript (and C) for execution in browsers and in Node.js.
The library is fully decomposable, being architected in such a way that you can swap out and mix and match APIs and functionality to cater to your exact preferences and use cases.
When you use stdlib, you can be absolutely certain that you are using the most thorough, rigorous, well-written, studied, documented, tested, measured, and high-quality code out there.
To join us in bringing numerical computing to the web, get started by checking us out on GitHub, and please consider financially supporting stdlib. We greatly appreciate your continued support!
Float32Array Support
Detect native Float32Array
support.
Installation
npm install @stdlib/assert-has-float32array-support
Usage
var hasFloat32ArraySupport = require( '@stdlib/assert-has-float32array-support' );
hasFloat32ArraySupport()
Detects if a runtime environment supports Float32Array
.
var bool = hasFloat32ArraySupport();
Examples
var hasFloat32ArraySupport = require( '@stdlib/assert-has-float32array-support' );
var bool = hasFloat32ArraySupport();
if ( bool ) {
console.log( 'Environment has Float32Array support.' );
} else {
console.log( 'Environment lacks Float32Array support.' );
}
Notice
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.
License
See LICENSE.
Copyright
Copyright © 2016-2023. The Stdlib Authors.
0.1.0 (2023-09-23)
<section class="features">
Features
5200ce2
- update minimum TypeScript version
</section>
<!-- /.features -->
<section class="breaking-changes">
BREAKING CHANGES
</section>
<!-- /.breaking-changes -->
<section class="commits">
Commits
<details>
5200ce2
- feat: update minimum TypeScript version (by Philipp Burckhardt)
</details>
</section>
<!-- /.commits -->
<section class="contributors">
Contributors
A total of 1 person contributed to this release. Thank you to this contributor:
</section>
<!-- /.contributors -->
</section>
<!-- /.release -->
<section class="release" id="v0.0.8">