
Security News
NVD Quietly Sweeps 100K+ CVEs Into a “Deferred” Black Hole
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
eval-serialize-typed-array
Advanced tools
Serializes a typed array for dynamic code evaluation.
$ npm install eval-serialize-typed-array
var serialize = require( 'eval-serialize-typed-array' );
Serializes a typed array
for dynamic code evaluation.
var deepEqual = require( 'deep-equal' );
var arr1 = new Int8Array( 4 );
var str = serialize( arr1 );
// returns 'new Int8Array([0,0,0,0])'
var arr2 = eval( str );
// returns Int8Array( [0,0,0,0] )
var bool = deepEqual( arr1, arr2 );
// returns true
Serializes a typed array
without performing type checking.
try {
// throws during input argument validation...
serialize( null );
} catch ( err ) {
console.error( err );
}
// To bypass validation...
var str = serialize.raw( new Float64Array( [1,2,3,4] ) );
// returns 'new Float64Array([1,2,3,4])';
var serialize = require( 'eval-serialize-typed-array' );
/**
* Returns a function to create a filled array.
*/
function create( arr ) {
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( arr ) + ';';
f += '}';
f += 'return arr;';
f += '}';
return ( new Function( f ) )();
}
var fill = create( new Float32Array( 20 ) );
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 a typed array for dynamic code evaluation.
The npm package eval-serialize-typed-array receives a total of 0 weekly downloads. As such, eval-serialize-typed-array popularity was classified as not popular.
We found that eval-serialize-typed-array 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
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Research
Security News
Lazarus-linked threat actors expand their npm malware campaign with new RAT loaders, hex obfuscation, and over 5,600 downloads across 11 packages.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.