Socket
Socket
Sign inDemoInstall

@jesscss/css-parser

Package Overview
Dependencies
6
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.0.6-alpha.0 to 1.0.8-alpha.6

12

lib/productions/selectors.js

@@ -109,7 +109,15 @@ "use strict";

children: $.OR([
{ ALT: () => [$.CONSUME($.T.Star)] },
{
ALT: () => {
const children = [
$.CONSUME($.T.Star)
];
$.MANY(() => children.push($.SUBRULE($.simpleSelector)));
return children;
}
},
{
ALT: () => {
const children = [];
$.AT_LEAST_ONE(() => children.push($.SUBRULE($.simpleSelector)));
$.AT_LEAST_ONE(() => children.push($.SUBRULE2($.simpleSelector)));
return children;

@@ -116,0 +124,0 @@ }

4

package.json

@@ -6,3 +6,3 @@ {

},
"version": "1.0.6-alpha.0",
"version": "1.0.8-alpha.6",
"description": "Jess CSS base parser",

@@ -33,3 +33,3 @@ "main": "lib/index",

},
"gitHead": "d83388cdd49e077b99590ac80def901b660037df"
"gitHead": "48267a282482c9d9f9a9dd0cbf29defc79b5b3f3"
}
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