1
0
mirror of https://github.com/thangisme/notes.git synced 2024-06-30 02:15:33 +00:00
notes/node_modules/stylelint/lib/utils/nextNonCommentNode.js

17 lines
358 B
JavaScript
Raw Normal View History

2017-03-09 18:16:08 +00:00
/* @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
}