Socket
Socket
Sign inDemoInstall

clean-css

Package Overview
Dependencies
1
Maintainers
2
Versions
211
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 5.3.2 to 5.3.3

17

lib/options/format.js

@@ -1,5 +0,14 @@

var systemLineBreak = require('os').EOL;
var override = require('../utils/override');
function getSystemLineBreak() {
var systemLineBreak = '\n';
try {
var os = require('os');
systemLineBreak = os.EOL;
} catch (_) {
// no op
}
return systemLineBreak;
}
var Breaks = {

@@ -20,3 +29,3 @@ AfterAtRule: 'afterAtRule',

LineFeed: '\n',
System: systemLineBreak
System: getSystemLineBreak()
};

@@ -197,3 +206,3 @@

default:
return systemLineBreak;
return BreakWith.System;
}

@@ -200,0 +209,0 @@ }

{
"name": "clean-css",
"version": "5.3.2",
"version": "5.3.3",
"author": "Jakub Pawlowicz <contact@jakubpawlowicz.com>",

@@ -5,0 +5,0 @@ "description": "A well-tested CSS minifier",

Sorry, the diff of this file is too big to display

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