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.
math-float64-to-words
Advanced tools
Splits a floating-point number into a higher order word and a lower order word.
Splits a double-precision floating-point number into a higher order word and a lower order word.
$ npm install math-float64-to-words
var words = require( 'math-float64-to-words' );
Splits a double-precision floating-point number into a higher order word (32-bit integer
) and a lower order word (32-bit integer
).
var w = words( 3.14e201 );
// returns [ 1774486211, 2479577218 ]
The returned array
contains two elements: a higher order word and a lower order word. The lower order word contains the less significant bits, while the higher order word contains the more significant bits and includes the exponent and sign.
var high = w[ 0 ];
// returns 1774486211
var low = w[ 1 ];
// returns 2479577218
var floor = require( 'math-floor' );
var pow = require( 'math-power' );
var words = require( 'math-float64-to-words' );
var frac;
var exp;
var w;
var x;
var i;
// Generate random numbers and split into words...
for ( i = 0; i < 100; i++ ) {
frac = Math.random() * 10;
exp = -floor( Math.random()*324 );
x = frac * pow( 10, exp );
w = words( x );
console.log( 'x: %d. higher: %d. lower: %d.', x, w[ 0 ], w[ 1 ] );
}
To run the example code from the top-level application directory,
$ node ./examples/index.js
This repository uses tape for unit tests. To run the tests, execute the following command in the top-level application directory:
$ make test
All new feature development should have corresponding unit tests to validate correct functionality.
This repository uses Istanbul as its code coverage tool. To generate a test coverage report, execute the following command in the top-level application directory:
$ make test-cov
Istanbul creates a ./reports/coverage
directory. To access an HTML version of the report,
$ make view-cov
This repository uses Testling for browser testing. To run the tests in a (headless) local web browser, execute the following command in the top-level application directory:
$ make test-browsers
To view the tests in a local web browser,
$ make view-browser-tests
Copyright © 2016. The Compute.io Authors.
FAQs
Splits a floating-point number into a higher order word and a lower order word.
We found that math-float64-to-words demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.