mirror of
https://gh.wpcy.net/https://github.com/djav1985/v-wordpress-plugin-updater.git
synced 2026-04-28 08:02:16 +08:00
9 lines
215 B
JavaScript
9 lines
215 B
JavaScript
/**
|
|
* 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(');
|
|
}
|