'use strict';/**
* @param {import('postcss').Rule} node
* @return {boolean}
*/module.exports=functionisMixin(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]===':'){returntrue;}returnfalse;};