Files
serenity/Userland/Libraries/LibJS/Runtime/KeyedCollections.h
Timothy Flynn 0bbf42bca7 LibJS: Introduce the CanonicalizeKeyedCollectionKey AO
This is an editorial change in the ECMA-262 spec. See:
https://github.com/tc39/ecma262/commit/30257dd

(cherry picked from commit 55b4ef79157f299e68163824d8d03dfab31dd3d6)
2024-07-14 16:45:08 -04:00

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);
}