1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 19:07:35 +00:00

LibJS: Implement Intl.DateTimeFormat.supportedLocalesOf

This commit is contained in:
Timothy Flynn 2021-11-28 21:16:27 -05:00 committed by Linus Groh
parent 6ad00088c0
commit d0e1997e07
3 changed files with 66 additions and 0 deletions

View file

@ -23,6 +23,8 @@ public:
private:
virtual bool has_constructor() const override { return true; }
JS_DECLARE_NATIVE_FUNCTION(supported_locales_of);
};
}