1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 08:57:47 +00:00

LibJS: Oops, fix StringPrototype build

This commit is contained in:
Andreas Kling 2020-04-16 10:24:32 +02:00
parent 1108dd1659
commit 9b9086dcf0

View file

@ -53,8 +53,8 @@ StringPrototype::StringPrototype()
put_native_function("padEnd", pad_end, 1);
put_native_function("trim", trim, 0);
put_native_function("trimStart", trimStart, 0);
put_native_function("trimEnd", trimEnd, 0);
put_native_function("trimStart", trim_start, 0);
put_native_function("trimEnd", trim_end, 0);
}
StringPrototype::~StringPrototype()