/* * Copyright (c) 2025, stelar7 * * SPDX-License-Identifier: BSD-2-Clause */ #include namespace Web::IndexedDB { GC_DEFINE_ALLOCATOR(ObjectStore); ObjectStore::~ObjectStore() = default; GC::Ref ObjectStore::create(JS::Realm& realm, String name, bool auto_increment, Optional const& key_path) { return realm.create(name, auto_increment, key_path); } }