UNPKG

detect-features

Version:

Detect and report browser and hardware features.

9 lines (7 loc) 194 B
// @ts-check /** * Gets the CPU cores available for web worker threading * * @returns {number} Number of available CPU cores */ export default (() => navigator.hardwareConcurrency || 0)();