New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@dmail/uneval

Package Overview
Dependencies
Maintainers
1
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@dmail/uneval

[![npm package](https://img.shields.io/npm/v/@dmail/uneval.svg)](https://www.npmjs.com/package/@dmail/uneval) [![build](https://travis-ci.com/dmail/uneval.svg?branch=master)](http://travis-ci.com/dmail/uneval) [![codecov](https://codecov.io/gh/dmail/uneva

  • 5.2.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
19
increased by90%
Maintainers
1
Weekly downloads
 
Created
Source

uneval

npm package build codecov

Overcome JSON.stringify limitations.

What is uneval

uneval is a function turning a JavaScript value into a string that can be evaluated.

It exists to overcome JSON.stringify limitations.
But you should better use JSON.stringify and avoid using uneval at all.
However, if some JSON.stringify limitations is a problem for you uneval might be what you're looking for.

JSON.stringify limitations

  • Transforms regexp into {}
JSON.stringify(/foo/) === "{}"
  • Transforms -0 into 0
JSON.stringify(-0) === "0"
  • Transforms NaN into null
JSON.stringify(NaN) === "null"
  • Transforms Infinity into null
JSON.stringify(Infinity) === "null"
  • Does not support circular structure
const value = {}
value.self = value
try {
  JSON.stringify(value)
} catch (error) {
  error.name === "TypeError"
}
  • Transforms dates into strings
JSON.stringify(new Date(0)) === `"1970-01-01T00:00:00.000Z"`
  • Is not optimized for repetitive structure
JSON.stringify(["very-long-string", "very-long-string"]) ===
  `["very-long-string","very-long-string"]`

"very-long-string" is repeated twice. It can becomes a waste if you use it to stringify very big structures.

  • Ignores non enumerable properties
JSON.stringify(Object.defineProperty({}, "foo", { enumerable: false })) === "{}"

Example

Live browser example: https://dmail.github.io/uneval/#browser-example.

Live node example: https://dmail.github.io/uneval/#node-example

FAQs

Package last updated on 19 Jun 2019

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc