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

tippex

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tippex - npm Package Compare versions

Comparing version 2.1.0 to 2.1.1

6

CHANGELOG.md
# Tippex changelog
## 2.1.1
* Handle `$` in template literals ([#1](https://github.com/Rich-Harris/tippex/issues/1))
* Fix crash on specific comments ([#8](https://github.com/Rich-Harris/tippex/issues/8))
## 2.1.0

@@ -4,0 +10,0 @@

5

dist/tippex.es6.js

@@ -117,3 +117,3 @@ var keywords = /(case|delete|do|else|in|instanceof|new|return|throw|typeof|void)\s*$/;

}
return templateString;
return templateString(char, i);
}

@@ -163,3 +163,4 @@

var token = ambiguous.exec(substr)[1];
var token = ambiguous.exec(substr);
if (token) token = token[1];

@@ -166,0 +167,0 @@ if (token === ')') {

@@ -123,3 +123,3 @@ (function (global, factory) {

}
return templateString;
return templateString(char, i);
}

@@ -169,3 +169,4 @@

var token = ambiguous.exec(substr)[1];
var token = ambiguous.exec(substr);
if (token) token = token[1];

@@ -172,0 +173,0 @@ if (token === ')') {

2

package.json
{
"name": "tippex",
"description": "Find and erase strings and comments in JavaScript code",
"version": "2.1.0",
"version": "2.1.1",
"author": "Rich Harris",

@@ -6,0 +6,0 @@ "main": "dist/tippex.umd.js",

@@ -118,3 +118,3 @@ const keywords = /(case|delete|do|else|in|instanceof|new|return|throw|typeof|void)\s*$/;

}
return templateString;
return templateString( char, i );
}

@@ -164,3 +164,4 @@

const token = ambiguous.exec( substr )[1];
let token = ambiguous.exec( substr );
if ( token ) token = token[1];

@@ -167,0 +168,0 @@ if ( token === ')' ) {

Sorry, the diff of this file is not supported yet

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