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

postcss-value-parser

Package Overview
Dependencies
Maintainers
2
Versions
36
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

postcss-value-parser - npm Package Compare versions

Comparing version 1.2.0 to 1.2.1

19

lib/tokenize.js

@@ -62,11 +62,14 @@ 'use strict';

case slash:
if(last.type === 'space') {
last = tokens.pop();
if (last) {
if (last.type === 'space') {
last = tokens.pop();
}
tokens.push({
type: 'div',
value: String.fromCharCode(code),
before: last.type === 'space' ? last.value : '',
after: ''
});
}
tokens.push({
type: 'div',
value: String.fromCharCode(code),
before: last.type === 'space' ? last.value : '',
after: ''
});
break;

@@ -73,0 +76,0 @@

@@ -0,0 +0,0 @@ var minus = '-'.charCodeAt(0);

{
"name": "postcss-value-parser",
"version": "1.2.0",
"version": "1.2.1",
"description": "Transforms css values into the tree",

@@ -5,0 +5,0 @@ "main": "lib/parser.js",

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