Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@stdlib/complex-dtype
Advanced tools
Return the data type of a complex number.
npm install @stdlib/complex-dtype
var dtype = require( '@stdlib/complex-dtype' );
Returns the data type of a complex number.
var Complex128 = require( '@stdlib/complex-float64' );
var dt = dtype( new Complex128( 1.0, 2.0 ) );
// returns 'complex128'
If provided an argument having an unknown or unsupported data type, the function returns null
.
var dt = dtype( 'beep' );
// returns null
var dtypes = require( '@stdlib/complex-dtypes' );
var ctors = require( '@stdlib/complex-ctors' );
var dtype = require( '@stdlib/complex-dtype' );
// Get a list of supported complex number data types:
var DTYPES = dtypes();
// For each supported data type, create a complex number and confirm its data type...
var ctor;
var dt;
var i;
for ( i = 0; i < DTYPES.length; i++ ) {
ctor = ctors( DTYPES[ i ] );
dt = dtype( new ctor( 1.0, 2.0 ) );
console.log( '%s == %s => %s', DTYPES[ i ], dt, DTYPES[ i ] === dt );
}
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.
0.0.1 (2022-02-16)
No changes reported for this release.
</section> <!-- /.release -->FAQs
Return the data type of a complex number.
The npm package @stdlib/complex-dtype receives a total of 736 weekly downloads. As such, @stdlib/complex-dtype popularity was classified as not popular.
We found that @stdlib/complex-dtype demonstrated a healthy version release cadence and project activity because the last version was released less than 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.