79635181

Date: 2025-05-23 09:01:29
Score: 0.5
Natty:
Report link

if (!text || text .length < 2 || !/^[a-zA-Z\s]+$/.test(text)) { }

This regex ensures:

The input consists only of letters (both uppercase and lowercase) and spaces.

The minimum length is 2 characters.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Apurv