isVariable.js 233 B

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