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

regexp

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

regexp - npm Package Compare versions

Comparing version 0.0.2 to 0.0.3

2

index.js

@@ -515,3 +515,3 @@ function parse(n) {

return new Token("any-character");
}, Qr = "Literal", jr = /^[^|\\\/.[() ?+*$\^]/, mr = "[^|\\\\\\/.[() ?+*$\\^]", Gr = function(n) {
}, Qr = "Literal", jr = /^[^|\\\/.[()?+*$\^]/, mr = "[^|\\\\\\/.[()?+*$\\^]", Gr = function(n) {
return new Literal(n);

@@ -518,0 +518,0 @@ }, Fr = "\\b", Sr = '"\\\\b"', Ur = function() {

{
"name": "regexp",
"version": "0.0.2",
"version": "0.0.3",
"description": "Regex Parser",

@@ -5,0 +5,0 @@ "keywords": [],

@@ -126,3 +126,82 @@ module.exports = [

}]
}]
}],
[/again and again/,{ type: 'match',
offset: 0,
text: 'again and again',
body:
[ { type: 'literal',
offset: 0,
text: 'a',
body: 'a',
escaped: false },
{ type: 'literal',
offset: 1,
text: 'g',
body: 'g',
escaped: false },
{ type: 'literal',
offset: 2,
text: 'a',
body: 'a',
escaped: false },
{ type: 'literal',
offset: 3,
text: 'i',
body: 'i',
escaped: false },
{ type: 'literal',
offset: 4,
text: 'n',
body: 'n',
escaped: false },
{ type: 'literal',
offset: 5,
text: ' ',
body: ' ',
escaped: false },
{ type: 'literal',
offset: 6,
text: 'a',
body: 'a',
escaped: false },
{ type: 'literal',
offset: 7,
text: 'n',
body: 'n',
escaped: false },
{ type: 'literal',
offset: 8,
text: 'd',
body: 'd',
escaped: false },
{ type: 'literal',
offset: 9,
text: ' ',
body: ' ',
escaped: false },
{ type: 'literal',
offset: 10,
text: 'a',
body: 'a',
escaped: false },
{ type: 'literal',
offset: 11,
text: 'g',
body: 'g',
escaped: false },
{ type: 'literal',
offset: 12,
text: 'a',
body: 'a',
escaped: false },
{ type: 'literal',
offset: 13,
text: 'i',
body: 'i',
escaped: false },
{ type: 'literal',
offset: 14,
text: 'n',
body: 'n',
escaped: false } ] }]
]
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