Skip to content

Commit a9c4da7

Browse files
committed
chore: remove unnecessary comments
1 parent 5813078 commit a9c4da7

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

packages/eslint-mdx/src/regexp.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,8 @@ export const isOpenTag = (text: string) => OPEN_TAG_REGEX.test(text.trim())
4242
export const isCloseTag = (text: string) => CLOSE_TAG_REGEX.test(text.trim())
4343
export const isComment = (text: string) => COMMENT_REGEX.test(text.trim())
4444

45-
// the following functions are only declared for robustness and should never be called
46-
/* istanbul ignore next */
4745
export const isOpenCloseTag = (text: string) =>
4846
OPEN_CLOSE_TAG_REGEX.test(text.trim())
4947

50-
/* istanbul ignore next */
5148
export const isSelfClosingTag = (text: string) =>
5249
SELF_CLOSING_TAG_REGEX.test(text.trim())

0 commit comments

Comments
 (0)