KeyedCollections.h 227 B

123456789101112131415
  1. /*
  2. * Copyright (c) 2024, Tim Flynn <trflynn89@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. #include <LibJS/Runtime/Value.h>
  8. namespace JS {
  9. Value canonicalize_keyed_collection_key(Value);
  10. }