UNPKG

el-beeswarm

Version:

<div style="display: flex; padding: 1rem; flex-direction: column; align-items: center; justify-content: center; height: 100vh; text-align: center; display: flex;

12 lines (10 loc) 223 B
'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('); };