Images 💾

Last commit ⭐

commit b52cbf673df1423baf134fe7e556f3cf45e87adb
Author:     Andreas Kling <kling@serenityos.org>
AuthorDate: Sun Sep 3 18:08:16 2023 +0200
Commit:     Andreas Kling <kling@serenityos.org>
CommitDate: Sun Sep 3 18:59:00 2023 +0200

    LibJS: Avoid DeprecatedString allocation in Token::double_value()
    
    Instead of allocating a DeprecatedString just so we can call strtoull()
    on it, we now collect the relevant token characters in a vector and add
    a null terminator manually.
    
    2% speed-up on Kraken/imaging-darkroom.js :^)