Socket
Socket
Sign inDemoInstall

nwmatcher

Package Overview
Dependencies
0
Maintainers
2
Versions
16
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.3.6 to 1.3.7

2

package.json
{
"name": "nwmatcher",
"version": "1.3.6",
"version": "1.3.7",
"description": "A CSS3-compliant JavaScript selector engine.",

@@ -5,0 +5,0 @@ "homepage": "http://javascript.nwbox.com/NWMatcher/",

@@ -17,3 +17,3 @@ # [NWMatcher](http://dperini.github.io/nwmatcher/)

```
$ npm install nwmatcher.js
$ npm install nwmatcher
```

@@ -20,0 +20,0 @@

@@ -8,5 +8,5 @@ /*

* Author: Diego Perini <diego.perini at gmail com>
* Version: 1.3.6
* Version: 1.3.7
* Created: 20070722
* Release: 20150710
* Release: 20151120
*

@@ -51,3 +51,3 @@ * License:

var version = 'nwmatcher-1.3.6',
var version = 'nwmatcher-1.3.7',

@@ -77,3 +77,3 @@ Dom = exports,

whitespace = '[\\x20\\t\\n\\r\\f]*',
combinators = '[\\x20]|[>+~][^>+~]',
combinators = '[\\x20]|[>+~](?=[^>+~])',
pseudoparms = '(?:[-+]?\\d*n)?[-+]?\\d*',

@@ -116,3 +116,3 @@

reValidator = global.RegExp(standardValidator, 'g'),
reValidator = global.RegExp(standardValidator),

@@ -224,3 +224,3 @@ reTrimSpaces = global.RegExp('^' +

reValidator = global.RegExp(Config.SIMPLENOT ?
standardValidator : extendedValidator, 'g');
standardValidator : extendedValidator);
return true;

@@ -227,0 +227,0 @@ },

@@ -8,5 +8,5 @@ /*

* Author: Diego Perini <diego.perini at gmail com>
* Version: 1.3.6
* Version: 1.3.7
* Created: 20070722
* Release: 20150710
* Release: 20151120
*

@@ -51,3 +51,3 @@ * License:

var version = 'nwmatcher-1.3.6',
var version = 'nwmatcher-1.3.7',

@@ -73,3 +73,3 @@ Dom = exports,

operators = '([~*^$|!]?={1})',
combinators = '[\\s]|[>+~][^>+~]',
combinators = '[\\s]|[>+~](?=[^>+~])',
pseudoparms = '(?:[-+]?\\d*n)?[-+]?\\d*',

@@ -111,3 +111,3 @@

reValidator = global.RegExp(standardValidator, 'g'),
reValidator = global.RegExp(standardValidator),

@@ -395,3 +395,3 @@ reTrimSpaces = /^\s*|\s*$/g,

reValidator = global.RegExp(Config.SIMPLENOT ?
standardValidator : extendedValidator, 'g');
standardValidator : extendedValidator);
return true;

@@ -398,0 +398,0 @@ },

@@ -8,5 +8,5 @@ /*

* Author: Diego Perini <diego.perini at gmail com>
* Version: 1.3.6
* Version: 1.3.7
* Created: 20070722
* Release: 20150710
* Release: 20151120
*

@@ -55,3 +55,3 @@ * License:

var version = 'nwmatcher-1.3.6',
var version = 'nwmatcher-1.3.7',

@@ -93,3 +93,3 @@ Dom = exports,

// 4 combinators F E, F>E, F+E, F~E
combinators = '[\\x20]|[>+~][^>+~]',
combinators = '[\\x20]|[>+~](?=[^>+~])',

@@ -173,3 +173,3 @@ // an+b format params for pseudo-classes

// validator for standard selectors as default
reValidator = new global.RegExp(standardValidator, 'g'),
reValidator = new global.RegExp(standardValidator),

@@ -909,3 +909,3 @@ // whitespace is any combination of these 5 character [\x20\t\n\r\f]

reValidator = new global.RegExp(Config.SIMPLENOT ?
standardValidator : extendedValidator, 'g');
standardValidator : extendedValidator);
return true;

@@ -912,0 +912,0 @@ },

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