UNPKG

postcss-sorting

Version:

PostCSS plugin to keep rules and at-rules content in order.

8 lines (6 loc) 159 B
/** * Check whether a property is a @-variable (Less) */ module.exports = function isAtVariable(node) { return node.type === 'atrule' && node.variable; };