Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
eval-serialize-negative-infinity
Advanced tools
Serializes negative infinity for dynamic code evaluation.
Serializes negative infinity for dynamic code evaluation.
$ npm install eval-serialize-negative-infinity
var serialize = require( 'eval-serialize-negative-infinity' );
Serializes negative infinity
for dynamic code evaluation.
var val = Number.NEGATIVE_INFINITY;
var str = serialize();
// returns 'Number.NEGATIVE_INFINITY'
var v = eval( str );
// returns -infinity
var bool = ( val === v );
// returns true
var serialize = require( 'eval-serialize-negative-infinity' );
/**
* Returns a function to create a filled array.
*/
function create() {
var f = '';
f += 'return function fill( len ) {';
f += 'var arr = new Array( len );';
f += 'for ( var i = 0; i < len; i++ ) {';
f += 'arr[ i ] = ' + serialize() + ';';
f += '}';
f += 'return arr;';
f += '}';
return ( new Function( f ) )();
}
var fill = create();
console.log( fill( 10 ) );
To run the example code from the top-level application directory,
$ node ./examples/index.js
Unit tests use the Mocha test framework with Chai assertions. 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
Copyright © 2015. Athan Reines.
FAQs
Serializes negative infinity for dynamic code evaluation.
The npm package eval-serialize-negative-infinity receives a total of 1 weekly downloads. As such, eval-serialize-negative-infinity popularity was classified as not popular.
We found that eval-serialize-negative-infinity 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.
Security News
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.