mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
398c181c79
Let's use the same name as the spec. :^)
16 lines
253 B
C++
16 lines
253 B
C++
/*
|
|
* Copyright (c) 2021, Luke Wilde <lukew@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibJS/Forward.h>
|
|
|
|
namespace Web::Bindings::IDL {
|
|
|
|
bool is_an_array_index(JS::GlobalObject&, JS::PropertyKey const&);
|
|
|
|
}
|