
Security News
Bun 1.2.19 Adds Isolated Installs for Better Monorepo Support
Bun 1.2.19 introduces isolated installs for smoother monorepo workflows, along with performance boosts, new tooling, and key compatibility fixes.
eval-serialize
Advanced tools
Serializes an input value for dynamic code evaluation.
$ npm install eval-serialize
var serialize = require( 'eval-serialize' );
Serializes an input value for dynamic code evaluation.
var str = serialize( 5 );
// returns '5'
str = serialize( 'beep' );
// returns '"beep"'
str = serialize( new Uint16Array( 4 ) );
// returns 'new Uint16Array([0,0,0,0])'
Note: the following input value types are not currently supported...
functions
Map
Set
var serialize = require( 'eval-serialize' );
console.log( serialize( 5 ) );
// returns '5'
console.log( serialize( 'beep' ) );
// returns '"beep"'
console.log( serialize( null ) );
// returns 'null'
console.log( serialize( undefined ) );
// returns 'undefined'
console.log( serialize( true ) );
// returns 'true'
console.log( serialize( false ) );
// returns 'false'
console.log( serialize( NaN ) );
// returns 'NaN'
console.log( serialize( Number.POSITIVE_INFINITY ) );
// returns 'Number.POSITIVE_INFINITY'
console.log( serialize( Number.NEGATIVE_INFINITY ) );
// returns 'Number.NEGATIVE_INFINITY'
console.log( serialize( [1,2,3] ) );
// returns '[1,2,3]'
console.log( serialize( {'beep':'boop'} ) );
// returns '{\"beep\":\"boop\"}'
console.log( serialize( new Buffer( 'beep' ) ) );
// returns 'new Buffer("YmVlcA==","base64")'
console.log( serialize( new Int32Array( [1,2,3,4] ) ) );
// returns 'new Int32Array([1,2,3,4])'
console.log( serialize( new Date() ) );
// returns 'new Date(<timestamp>)'
console.log( serialize( function add( a, b ) {
return a + b;
}));
// returns 'function add( a, b ) {\n\treturn a + b;\n}'
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 an input value for dynamic code evaluation.
The npm package eval-serialize receives a total of 0 weekly downloads. As such, eval-serialize popularity was classified as not popular.
We found that eval-serialize 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
Bun 1.2.19 introduces isolated installs for smoother monorepo workflows, along with performance boosts, new tooling, and key compatibility fixes.
Security News
Popular npm packages like eslint-config-prettier were compromised after a phishing attack stole a maintainer’s token, spreading malicious updates.
Security News
/Research
A phishing attack targeted developers using a typosquatted npm domain (npnjs.com) to steal credentials via fake login pages - watch out for similar scams.