LibWeb: Implement code_unit_less_than

This commit is contained in:
stelar7 2024-11-11 10:47:16 +01:00 committed by Andreas Kling
commit d26ac9c446
Notes: github-actions[bot] 2024-11-25 10:55:07 +00:00
2 changed files with 33 additions and 0 deletions

View file

@ -22,5 +22,6 @@ ErrorOr<String> to_ascii_lowercase(StringView string);
ErrorOr<String> to_ascii_uppercase(StringView string);
ByteBuffer isomorphic_encode(StringView input);
String isomorphic_decode(ReadonlyBytes input);
bool code_unit_less_than(StringView a, StringView b);
}