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.7.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
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 })) === "{}"

How to use

npm install --save-dev @dmail/uneval

See browser and node examples below.

browser example

<script src="https://unpkg.com/@dmail/uneval@5.3.0/dist/global/main.js"></script>
<script>
  const { uneval } = window.__dmail_uneval__
  console.log(eval(uneval({ answer: 42 })))
</script>

node example

const { uneval } = require("@dmail/uneval")

console.log(eval(uneval({ answer: 42 })))

Interactive browser example

— see https://dmail.github.io/uneval/browser-example.

Interactive node example

— see https://dmail.github.io/uneval/node-example

FAQs

Package last updated on 06 Nov 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