fast-cli
Version:
Test your download and upload speed using fast.com
23 lines (22 loc) • 492 B
JavaScript
export const convertToMbps = (value, unit) => {
if (!unit || !value) {
return 0;
}
switch (unit.toLowerCase()) {
case 'gbps': {
return value * 1000;
}
case 'mbps': {
return value;
}
case 'kbps': {
return value / 1000;
}
case 'bps': {
return value / 1_000_000;
}
default: {
throw new Error(`Unknown speed unit: ${unit}`);
}
}
};