New:Socket for Asana Is Now Available.Learn more
Get Started

postcss-ordered-values

Package Overview
Dependencies
Maintainers
7
Versions
65
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

postcss-ordered-values - npm Package Compare versions

Comparing version
8.0.3
to
8.0.4
+3
-3
package.json
{
"name": "postcss-ordered-values",
"version": "8.0.3",
"version": "8.0.4",
"description": "Ensure values are ordered consistently in your CSS.",

@@ -38,7 +38,7 @@ "exports": {

"type": "git",
"url": "cssnano/cssnano"
"url": "git+https://github.com/cssnano/cssnano.git"
},
"dependencies": {
"postcss-value-parser": "^4.2.0",
"cssnano-utils": "^6.0.3"
"cssnano-utils": "^6.0.4"
},

@@ -45,0 +45,0 @@ "bugs": {

@@ -64,4 +64,4 @@ 'use strict';

};
gridLine = gridLine.trim(); // '3 span ' -> '3 span'
for (const node of gridLine.split(' ')) {
const trimmedGridLine = gridLine.trim(); // '3 span ' -> '3 span'
for (const node of trimmedGridLine.split(' ')) {
// ['3','span']

@@ -85,4 +85,4 @@ if (node === 'span') {

};
gridLine = gridLine.trim();
for (const node of gridLine.split(' ')) {
const trimmedGridLine = gridLine.trim();
for (const node of trimmedGridLine.split(' ')) {
if (node === 'span') {

@@ -89,0 +89,0 @@ normalizeValue.front = node;