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

postcss

Package Overview
Dependencies
Maintainers
1
Versions
261
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

postcss - npm Package Compare versions

Comparing version 0.3.3 to 0.3.4

3

ChangeLog.md

@@ -0,1 +1,4 @@

## 0.3.4
* Better space symbol detect to read UTF-8 BOM correctly.
## 0.3.3

@@ -2,0 +5,0 @@ * Remove source map hacks by using new Mozilla’s `source-map` (by Simon Lydell).

2

lib/parse.js

@@ -347,3 +347,3 @@ (function() {

Parser.prototype.space = function() {
return this.letter === ' ' || this.letter === "\t" || this.letter === "\n" || this.letter === "\f" || this.letter === "\r";
return this.letter.match(/\s/);
};

@@ -350,0 +350,0 @@

{
"name": "postcss",
"version": "0.3.3",
"version": "0.3.4",
"description": "Framework for CSS postprocessors",

@@ -14,3 +14,3 @@ "keywords": ["css", "parser", "postproccessor"],

"source-map": "~0.1.33",
"base64-js": "0.0.6"
"base64-js": "~0.0.6"
},

@@ -17,0 +17,0 @@ "devDependencies": {

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