securityos/node_modules/stylelint/lib/utils/getNextNonSharedLineComment...

37 lines
713 B
JavaScript
Raw Normal View History

2024-09-06 15:32:35 +00:00
'use strict';
/** @typedef {import('postcss').Node} Node */
/**
* @param {Node | void} node
*/
function getNodeLine(node) {
return node && node.source && node.source.start && node.source.start.line;
}
/**
* @param {Node | void} node
* @returns {Node | void}
*/
module.exports = function getNextNonSharedLineCommentNode(node) {
if (node === undefined) {
return undefined;
}
/** @type {Node | void} */
const nextNode = node.next();
if (!nextNode || nextNode.type !== 'comment') {
return nextNode;
}
if (
getNodeLine(node) === getNodeLine(nextNode) ||
getNodeLine(nextNode) === getNodeLine(nextNode.next())
) {
return getNextNonSharedLineCommentNode(nextNode);
}
return nextNode;
};