Sha256: 5c424ac2afcfbd891a5e6a01eb21e3ad66d9bb73e688f2b38ab171e4e040e6a8
Contents?: true
Size: 223 Bytes
Versions: 24
Compression:
Stored size: 223 Bytes
Contents
'use strict'; /** * Check whether a word is a variable i.e var(--custom-property). * * @param {string} word * @returns {boolean} */ module.exports = function (word) { return word.toLowerCase().startsWith('var('); };
Version data entries
24 entries across 24 versions & 1 rubygems