mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-26 19:22:30 -05:00
16 lines
227 B
C
16 lines
227 B
C
|
/*
|
||
|
* Copyright (c) 2024, Tim Flynn <trflynn89@serenityos.org>
|
||
|
*
|
||
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <LibJS/Runtime/Value.h>
|
||
|
|
||
|
namespace JS {
|
||
|
|
||
|
Value canonicalize_keyed_collection_key(Value);
|
||
|
|
||
|
}
|