New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

more-css

Package Overview
Dependencies
Maintainers
1
Versions
73
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

more-css - npm Package Compare versions

Comparing version 0.1.5 to 0.1.6

2

package.json
{
"name": "more-css",
"version": "0.1.5",
"version": "0.1.6",
"description": "a css pre-compiler & agressive compressor",

@@ -5,0 +5,0 @@ "maintainers": [

@@ -65,3 +65,4 @@ var Class = require('../util/Class'),

//����less
if(this.tokens[this.index] && this.tokens[this.index].content() == ':') {
var next = this.tokens[this.index];
if(next && (next.content() == ':' || next.content() == '=')) {
this.look.type(Token.VARS);

@@ -205,3 +206,5 @@ return this.vars();

node.add(this.match());
node.add(this.match(':'));
if([':', '='].indexOf(this.look.content()) > -1) {
node.add(this.match());
}
node.add(this.match([Token.STRING, Token.NUMBER]));

@@ -208,0 +211,0 @@ node.add(this.match(';'));

@@ -66,3 +66,4 @@ define(function(require, exports, module) {

//����less
if(this.tokens[this.index] && this.tokens[this.index].content() == ':') {
var next = this.tokens[this.index];
if(next && (next.content() == ':' || next.content() == '=')) {
this.look.type(Token.VARS);

@@ -206,3 +207,5 @@ return this.vars();

node.add(this.match());
node.add(this.match(':'));
if([':', '='].indexOf(this.look.content()) > -1) {
node.add(this.match());
}
node.add(this.match([Token.STRING, Token.NUMBER]));

@@ -209,0 +212,0 @@ node.add(this.match(';'));

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