import { cpus } from'os';
/**
* Get the number of CPU cores available on the system.
*
* @returns The number of CPU cores, or 1 if the system cannot determine it.
*/exportfunctionnumberOfCpus() {
returncpus().length || 1;
}
//# sourceMappingURL=util.js.map