mirror of
https://github.com/RGBCube/serenity
synced 2025-05-20 16:05:09 +00:00
15 lines
253 B
C++
15 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&);
|
|
|
|
}
|