create-expo-cljs-app
Version:
Create a react native application with Expo and Shadow-CLJS!
21 lines (17 loc) • 544 B
Flow
/**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @flow strict
* @format
*/
;
const os = require('os');
module.exports = (workers: ?number): number => {
const cores = os.cpus().length;
return typeof workers === 'number' && Number.isInteger(workers)
? Math.min(cores, workers > 0 ? workers : 1)
: Math.max(1, Math.ceil(cores * (0.5 + 0.5 * Math.exp(-cores * 0.07)) - 1));
};