(codePoint)
| 456 | } |
| 457 | |
| 458 | function classifyPromptCodePoint(codePoint) { |
| 459 | if (isBidirectionalTextControl(codePoint)) { |
| 460 | return "bidirectional text control"; |
| 461 | } |
| 462 | |
| 463 | if (isDisallowedControlCharacter(codePoint)) { |
| 464 | return "control character"; |
| 465 | } |
| 466 | |
| 467 | if (isInvisibleUnicode(codePoint)) { |
| 468 | return "invisible Unicode"; |
| 469 | } |
| 470 | |
| 471 | return null; |
| 472 | } |
| 473 | |
| 474 | function isBidirectionalTextControl(codePoint) { |
| 475 | return ( |
no test coverage detected