Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

code-red

Package Overview
Dependencies
Maintainers
1
Versions
53
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

code-red - npm Package Compare versions

Comparing version 0.0.7 to 0.0.8

4

CHANGELOG.md
# code-red changelog
## 0.0.8
* Allow strings to be treated as identifiers
## 0.0.7

@@ -4,0 +8,0 @@

5

dist/code-red.js

@@ -199,3 +199,6 @@ (function (global, factory) {

if (+match[1] in values) {
const value = values[+match[1]];
let value = values[+match[1]];
if (typeof value === 'string') {
value = { type: 'Identifier', name: value };
}

@@ -202,0 +205,0 @@ if (index === null) {

{
"name": "code-red",
"description": "code-red",
"version": "0.0.7",
"version": "0.0.8",
"repository": "Rich-Harris/code-red",

@@ -6,0 +6,0 @@ "main": "dist/code-red.js",

Sorry, the diff of this file is not supported yet

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