数通智联化工云平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

25 lines
535 B

/**
* Check whether a property is standard
*
* @param {string} property
* @return {boolean} If `true`, the property is standard
*/
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.startsWith('$')) {
return false;
}
// Less var (e.g. @var: x)
if (property.startsWith('@')) {
return false;
}
// SCSS or Less interpolation
if (/#{.+?}|@{.+?}|\$\(.+?\)/.test(property)) {
return false;
}
return true;
};