Socket
Socket
Sign inDemoInstall

regjsgen

Package Overview
Dependencies
0
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.4.0 to 0.5.0

8

package.json
{
"name": "regjsgen",
"version": "0.4.0",
"version": "0.5.0",
"description": "Generate regular expressions from regjsparser’s AST.",

@@ -34,7 +34,7 @@ "homepage": "https://github.com/bnjmnt4n/regjsgen",

"devDependencies": {
"codecov": "^3.0.0",
"codecov": "^3.1.0",
"istanbul": "~0.4.5",
"regjsparser": "~0.3.0",
"request": "^2.83.0"
"regjsparser": "~0.4.0",
"request": "^2.88.0"
}
}
/*!
* regjsgen 0.4.0
* regjsgen 0.5.0
* Copyright 2014-2018 Benjamin Tan <https://bnjmnt4n.now.sh/>

@@ -233,2 +233,8 @@ * Available under MIT license <https://github.com/bnjmnt4n/regjsgen/blob/master/LICENSE>

break;
case 'lookbehind':
result += '?<=';
break;
case 'negativeLookbehind':
result += '?<!';
break;
default:

@@ -235,0 +241,0 @@ throw Error('Invalid behaviour: ' + node.behaviour);

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc