UNPKG

223 BJavaScriptView Raw
1'use strict';
2
3/**
4 * Check whether a word is a variable i.e var(--custom-property).
5 *
6 * @param {string} word
7 * @returns {boolean}
8 */
9module.exports = function (word) {
10 return word.toLowerCase().startsWith('var(');
11};