16 lines
332 B
JavaScript
16 lines
332 B
JavaScript
|
'use strict';
|
||
|
/**
|
||
|
* @param {import('postcss').Rule} node
|
||
|
* @return {boolean}
|
||
|
*/
|
||
|
module.exports = function isMixin(node) {
|
||
|
const { selector } = node;
|
||
|
|
||
|
// If the selector ends with a ':' it is likely a part of a custom mixin.
|
||
|
if (!selector || selector[selector.length - 1] === ':') {
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
return false;
|
||
|
};
|