1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 20:18:12 +00:00

LibWeb: Move is_basic_latin() to Blob.{cpp,h}

This method needs to be accessible from both Blob and File.
This commit is contained in:
Kenneth Myhra 2022-08-01 19:33:27 +02:00 committed by Linus Groh
parent ad060befad
commit 73aec263b1
3 changed files with 10 additions and 9 deletions

View file

@ -96,6 +96,15 @@ ErrorOr<ByteBuffer> process_blob_parts(Vector<BlobPart> const& blob_parts, Optio
return bytes;
}
bool is_basic_latin(StringView view)
{
for (auto code_point : view) {
if (code_point < 0x0020 || code_point > 0x007E)
return false;
}
return true;
}
Blob::Blob(ByteBuffer byte_buffer, String type)
: m_byte_buffer(move(byte_buffer))
, m_type(move(type))