blob: 6cf7a899b70548530bb1de4617285eb59e18b565 (
plain) (
blame)
1
2
3
4
|
export default function isLowQualityComment(text: string): boolean {
// Note: the unicode range targets skin color modifiers for the hand emojis
return text.replaceAll(/[\s,.!?👍👎👌🙏]+|[\u{1F3FB}-\u{1F3FF}]|[+-]\d+|⬆️|ditt?o|me|too|t?here|on|same|this|issues?|please|pl[sz]|any|updates?|bump|question|solution|following/gui, '') === '';
}
|