1 2 3 4 5 6 7 8
"use strict"; const os = require("os"); exports.implementation = class NavigatorConcurrentHardwareImpl { get hardwareConcurrency() { return os.cpus().length; } };