UNPKG

@isentinel/eslint-plugin-comment-length

Version:
6 lines (4 loc) 169 B
const punctuation = [",", ".", "?", ":", "!", ";"]; export function isPunctuation(char: string | undefined): boolean { return !!char && punctuation.includes(char); }