(text)
| 262 | } |
| 263 | |
| 264 | const isAllEmptyAndNoLineBreak = (text) => !/[\S\n\u2028\u2029]/.test(text); |
| 265 | function isOwnLineComment(text, options, decoratedComments, commentIndex) { |
| 266 | const { comment, precedingNode } = decoratedComments[commentIndex]; |
| 267 | const { locStart, locEnd } = options; |
no test coverage detected
searching dependent graphs…