mirror of
https://github.com/OliveTin/OliveTin
synced 2025-12-19 04:25:32 +00:00
31 lines
683 B
JavaScript
31 lines
683 B
JavaScript
// NOTICE: This file is generated by Rollup. To modify it,
|
|
// please instead edit the ESM counterpart and rebuild with Rollup (npm run build).
|
|
'use strict';
|
|
|
|
const isStandardSyntaxSelector = require('./isStandardSyntaxSelector.cjs');
|
|
|
|
/**
|
|
* Check whether a Node is a standard rule
|
|
*
|
|
* @param {import('postcss').Rule | import('postcss-less').Rule} rule
|
|
* @returns {boolean}
|
|
*/
|
|
function isStandardSyntaxRule(rule) {
|
|
if (rule.type !== 'rule') {
|
|
return false;
|
|
}
|
|
|
|
// Ignore Less &:extend rule
|
|
if ('extend' in rule && rule.extend) {
|
|
return false;
|
|
}
|
|
|
|
if (!isStandardSyntaxSelector(rule.selector)) {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
module.exports = isStandardSyntaxRule;
|