mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-01-18 07:52:50 +00:00
8 lines
148 B
JavaScript
8 lines
148 B
JavaScript
/**
|
|
* Check whether a property is a Less mixin
|
|
*/
|
|
|
|
module.exports = function isLessMixin(node) {
|
|
return node.type === 'atrule' && node.mixin;
|
|
};
|