Sha256: a0c9f71b14d62784ba24c56cf7e4ee82615f95e780fbd6f870a3900dbb110496
Contents?: true
Size: 1 KB
Versions: 24
Compression:
Stored size: 1 KB
Contents
const postcss = require('postcss'); const shorthandData = require('./shorthandData'); function isShorthand(a, b) { const longhands = shorthandData[a] || []; return longhands.includes(b); } module.exports = function checkAlphabeticalOrder(firstPropData, secondPropData) { // OK if the first is shorthand for the second: if (isShorthand(firstPropData.unprefixedName, secondPropData.unprefixedName)) { return true; } // Not OK if the second is shorthand for the first: if (isShorthand(secondPropData.unprefixedName, firstPropData.unprefixedName)) { return false; } // If unprefixed prop names are the same, compare the prefixed versions if (firstPropData.unprefixedName === secondPropData.unprefixedName) { // If first property has no prefix and second property has prefix if ( !postcss.vendor.prefix(firstPropData.name).length && postcss.vendor.prefix(secondPropData.name).length ) { return false; } return true; } return firstPropData.unprefixedName < secondPropData.unprefixedName; };
Version data entries
24 entries across 24 versions & 1 rubygems