Files
mooknote_web/node_modules/stylehacks/src/isMixin.js
DelLevin-Home a4a326401e 1
2026-03-10 22:06:32 +08:00

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