芝麻web文件管理V1.00
编辑当前文件:/home/rejoandoctor/public_html/node_modules/stylehacks/src/isMixin.js
'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; };