2020-05-19 11:43:42 +03:00

8 lines
148 B
JavaScript

/**
* Check whether a property is a Less mixin
*/
module.exports = function isLessMixin(node) {
return node.type === 'atrule' && node.mixin;
};