mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-19 23:53:20 +00:00
19 lines
332 B
C++
19 lines
332 B
C++
![]() |
/*
|
||
|
* Copyright (c) 2021, Tim Flynn <trflynn89@pm.me>
|
||
|
*
|
||
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
*/
|
||
|
|
||
|
#include <LibJS/Runtime/GlobalObject.h>
|
||
|
#include <LibJS/Runtime/Intl/Locale.h>
|
||
|
|
||
|
namespace JS::Intl {
|
||
|
|
||
|
// 14 Locale Objects, https://tc39.es/ecma402/#locale-objects
|
||
|
Locale::Locale(Object& prototype)
|
||
|
: Object(prototype)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
}
|