Socket
Socket
Sign inDemoInstall

stylus

Package Overview
Dependencies
Maintainers
0
Versions
182
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

stylus - npm Package Compare versions

Comparing version 0.12.4 to 0.13.0

6

History.md
0.13.0 / 2011-05-17
==================
* Added `-u, --use PATH` flag for utilizing plugins
* Fixed `hsla.clampDegrees()` with negative values [Bruno Héridet]
0.12.4 / 2011-05-12

@@ -3,0 +9,0 @@ ==================

3

lib/nodes/hsla.js

@@ -217,3 +217,4 @@

function clampDegrees(n) {
return Math.abs(n % 360);
n = n % 360;
return n >= 0 ? n : 360 + n;
}

@@ -220,0 +221,0 @@

@@ -27,3 +27,3 @@

exports.version = '0.12.4';
exports.version = '0.13.0';

@@ -30,0 +30,0 @@ /**

{ "name": "stylus"
, "description": "Robust, expressive, and feature-rich CSS superset"
, "version": "0.12.4"
, "version": "0.13.0"
, "author": "TJ Holowaychuk <tj@vision-media.ca>"

@@ -5,0 +5,0 @@ , "keywords": ["css", "parser", "style", "stylesheets", "jade", "language"]

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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