mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 23:57:34 +00:00
LibJS: Oops, fix StringPrototype build
This commit is contained in:
parent
1108dd1659
commit
9b9086dcf0
1 changed files with 2 additions and 2 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue