Files

10 lines
215 B
JavaScript
Raw Permalink Normal View History

2025-03-07 22:27:18 +08:00
/**
* Check whether a word is a variable i.e var(--custom-property).
*
* @param {string} word
* @returns {boolean}
*/
export default function isVariable(word) {
return word.toLowerCase().startsWith('var(');
}