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

LibJS: Add the String.fromCodePoint() method

This commit is contained in:
Idan Horowitz 2021-06-16 11:36:23 +03:00 committed by Linus Groh
parent 89855d0b8c
commit 2299be474b
5 changed files with 63 additions and 0 deletions

View file

@ -26,6 +26,7 @@ private:
JS_DECLARE_NATIVE_FUNCTION(raw);
JS_DECLARE_NATIVE_FUNCTION(from_char_code);
JS_DECLARE_NATIVE_FUNCTION(from_code_point);
};
}