isAtVariable.js 159 B

1234567
  1. /**
  2. * Check whether a property is a @-variable (Less)
  3. */
  4. module.exports = function isAtVariable(node) {
  5. return node.type === 'atrule' && node.variable;
  6. };