postcss-ordered-values
Advanced tools
Comparing version 5.1.2 to 5.1.3
{ | ||
"name": "postcss-ordered-values", | ||
"version": "5.1.2", | ||
"version": "5.1.3", | ||
"description": "Ensure values are ordered consistently in your CSS.", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -66,2 +66,4 @@ 'use strict'; | ||
const variableFunctions = new Set(['var', 'env', 'constant']); | ||
/** | ||
@@ -76,3 +78,3 @@ * @param {valueParser.Node} node | ||
return ['var', 'env', 'constant'].includes(node.value.toLowerCase()); | ||
return variableFunctions.has(node.value.toLowerCase()); | ||
} | ||
@@ -79,0 +81,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
28880
883