Images 💾

Last commit ⭐

commit ecb7d4b40f15aa11e02d03d68d2557beb0294f13
Author:     Jess <jess@xeraxera.me>
AuthorDate: Thu Apr 18 21:35:35 2024 +1200
Commit:     Tim Flynn <trflynn89@pm.me>
CommitDate: Sat Apr 20 19:23:46 2024 -0400

    LibJS: Throw RangeError in `StringPrototype::repeat` if OOM
    
    currently crashes with an assertion failure in `String::repeated` if
    malloc can't serve a `count * input_size` sized request, so add
    `String::repeated_with_error` to propagate the error.