1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 11:17:44 +00:00

LibJS: Implement Object.assign()

This commit is contained in:
Linus Groh 2021-06-12 11:35:53 +01:00
parent de77946a8c
commit 7e1bffdeb8
4 changed files with 78 additions and 0 deletions

View file

@ -43,6 +43,7 @@ private:
JS_DECLARE_NATIVE_FUNCTION(entries);
JS_DECLARE_NATIVE_FUNCTION(create);
JS_DECLARE_NATIVE_FUNCTION(has_own);
JS_DECLARE_NATIVE_FUNCTION(assign);
};
}