stylelint
Version:
A mighty CSS linter that helps you avoid errors and enforce conventions.
64 lines (54 loc) • 1.19 kB
JavaScript
import valueParser from 'postcss-value-parser';
import blurInterpolation from './blurInterpolation.mjs';
import isStandardSyntaxValue from './isStandardSyntaxValue.mjs';
import { isValueWord } from './typeGuards.mjs';
/**
* Get Dimension from value node;
* `unit` and `number` return null if neither is found
*
* @param {import('postcss-value-parser').Node} node
*
* @returns {{unit: null, number: null} | valueParser.Dimension}
*/
export default function getDimension(node) {
if (!node || !node.value) {
return {
unit: null,
number: null,
};
}
// Ignore non-word nodes
if (!isValueWord(node)) {
return {
unit: null,
number: null,
};
}
// Ignore non standard syntax
if (!isStandardSyntaxValue(node.value)) {
return {
unit: null,
number: null,
};
}
// Ignore HEX
if (node.value.startsWith('#')) {
return {
unit: null,
number: null,
};
}
// Remove non standard stuff
const value = blurInterpolation(node.value, '')
// ignore hack unit
.replace('\\0', '')
.replace('\\9', '');
const parsedUnit = valueParser.unit(value);
if (!parsedUnit) {
return {
unit: null,
number: null,
};
}
return parsedUnit;
}