/* * Copyright (c) 2022, Andrew Kaster * Copyright (c) 2024, Shannon Booth * * SPDX-License-Identifier: BSD-2-Clause */ #include #include namespace Web::HTML { // https://html.spec.whatwg.org/multipage/workers.html#dom-navigator-hardwareconcurrency WebIDL::UnsignedLongLong NavigatorConcurrentHardwareMixin::hardware_concurrency() { return Core::System::hardware_concurrency(); } }