NavigatorConcurrentHardware-impl.js 172 Bytes edit raw blame history 1 2 3 4 5 6 7 8 "use strict"; const os = require("os"); exports.implementation = class NavigatorConcurrentHardwareImpl { get hardwareConcurrency() { return os.cpus().length; } };