* Determines the number of logical processors available to the host, as from * `os.cpus`. * * @private * @method processorCount * @return {Number} The number of logical processors.
()
| 331 | * @return {Number} The number of logical processors. |
| 332 | */ |
| 333 | processorCount() { |
| 334 | return os.cpus().length; |
| 335 | }, |
| 336 | |
| 337 | /** |
| 338 | * Determines the average processor load across the system. This is |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…