epiphany/node_modules/postcss-sorting/lib/isStandardSyntaxProperty.js
2023-12-09 22:48:07 -08:00

18 lines
388 B
JavaScript

module.exports = function isStandardSyntaxProperty(property) {
// SCSS var (e.g. $var: x), list (e.g. $list: (x)) or map (e.g. $map: (key:value))
if (property[0] === '$') {
return false;
}
// Less var (e.g. @var: x)
if (property[0] === '@') {
return false;
}
// SCSS or Less interpolation
if (/#{.+?}|@{.+?}|\$\(.+?\)/.test(property)) {
return false;
}
return true;
};