Urara-Blog/node_modules/.pnpm-store/v3/files/6b/9f7408b6fe3a0f4fad0762a69b98d03d9125ff131a6c6ed4459d5ca745f3e8648d126f95fab53af2037a17f787042835ba432ca0d2a76210c501be9975d2c0
2022-08-14 01:14:53 +08:00

15 lines
332 B
Text

'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;
};