
Security News
Another Round of TEA Protocol Spam Floods npm, But It’s Not a Worm
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.
@stdlib/array-base-assert-is-mostly-safe-data-type-cast
Advanced tools
Determine if an array data type can be safely cast or, for floating-point data types, downcast to another array data type.
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!
Determine whether an array data type can be safely cast or, for floating-point data types, downcast to another array data type.
npm install @stdlib/array-base-assert-is-mostly-safe-data-type-cast
var isMostlySafeCast = require( '@stdlib/array-base-assert-is-mostly-safe-data-type-cast' );
Returns a boolean indicating whether an array data type can be safely cast or, for floating-point data types, downcast to another array data type.
var bool = isMostlySafeCast( 'float32', 'float64' );
// returns true
bool = isMostlySafeCast( 'float64', 'int32' );
// returns false
var cartesianSquare = require( '@stdlib/array-base-cartesian-square' );
var dtypes = require( '@stdlib/array-dtypes' );
var isMostlySafeCast = require( '@stdlib/array-base-assert-is-mostly-safe-data-type-cast' );
// Generate a list of dtype pairs:
var dt = cartesianSquare( dtypes() );
// For each data type pair, determine whether one can cast to another data type...
var i;
for ( i = 0; i < dt.length; i++ ) {
console.log( '%s. Can cast? %s.', dt[i].join( ' => ' ), isMostlySafeCast.apply( null, dt[i] ) );
}
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-2024. The Stdlib Authors.
FAQs
Determine if an array data type can be safely cast or, for floating-point data types, downcast to another array data type.
The npm package @stdlib/array-base-assert-is-mostly-safe-data-type-cast receives a total of 10 weekly downloads. As such, @stdlib/array-base-assert-is-mostly-safe-data-type-cast popularity was classified as not popular.
We found that @stdlib/array-base-assert-is-mostly-safe-data-type-cast demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.

Security News
PyPI adds Trusted Publishing support for GitLab Self-Managed as adoption reaches 25% of uploads

Research
/Security News
A malicious Chrome extension posing as an Ethereum wallet steals seed phrases by encoding them into Sui transactions, enabling full wallet takeover.