79410452

Date: 2025-02-04 02:35:53
Score: 1.5
Natty:
Report link

You need to replace spaces with the unicode before checking. TestCafe has a section about this.   is \u00a0

specialCharReplace(text) {
    // replace spaces of text with \u00a0
    return text.replace(/\s/g, "\u00a0");
}
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: S s