blob: 411ee32de73a8ef2f4f08931ec7326e0d29472b7 [file] [log] [blame]
/* @flow */
"use strict";
/**
* Get the next non-comment node in a PostCSS AST
* at or after a given node.
*/
module.exports = function nextNonCommentNode(
startNode /*: Object*/
) /*: ?Object*/ {
if (!startNode || !startNode.next) return null;
if (startNode.type === "comment") {
return nextNonCommentNode(startNode.next());
}
return startNode;
};