UNPKG

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