Socket
Socket
Sign inDemoInstall

mensch

Package Overview
Dependencies
0
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.2.0 to 0.2.1

4

HISTORY.md
# mensch history
## 0.2.1 - 20 Sep 2013
- Trim whitespace around grouped selectors.
## 0.2.0 - 18 Sep 2013

@@ -4,0 +8,0 @@

@@ -185,5 +185,9 @@ var DEBUG = false; // `true` to print debugging info.

function parseSelector(token) {
function trim(str) {
return str.trim();
}
return astNode(token, {
type: 'rule',
selectors: token.text.split(','),
selectors: token.text.split(',').map(trim),
declarations: parseDeclarations(token)

@@ -190,0 +194,0 @@ });

2

package.json
{
"name": "mensch",
"description": "A decent CSS parser",
"version": "0.2.0",
"version": "0.2.1",
"main": "index.js",

@@ -6,0 +6,0 @@ "scripts": {

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