mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-12 01:47:00 +02:00
This is an editorial change in the ECMA-262 spec. See: https://github.com/tc39/ecma262/commit/30257dd (cherry picked from commit 55b4ef79157f299e68163824d8d03dfab31dd3d6)
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);
|
|
|
|
}
|