Blame view

lib/jsdom/living/navigator/NavigatorConcurrentHardware-impl.js 172 Bytes
858f2bdf5   Boyan Georgiev   fixes
1
2
3
4
5
6
7
8
  "use strict";
  const os = require("os");
  
  exports.implementation = class NavigatorConcurrentHardwareImpl {
    get hardwareConcurrency() {
      return os.cpus().length;
    }
  };