8 lines
159 B
JavaScript
Raw Normal View History

2020-05-19 11:43:42 +03:00
/**
* Check whether a property is a @-variable (Less)
*/
module.exports = function isAtVariable(node) {
return node.type === 'atrule' && node.variable;
};