mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-25 14:59:16 +01:00
14 lines
186 B
JavaScript
Vendored
14 lines
186 B
JavaScript
Vendored
'use strict';
|
|
|
|
function tryParseInt(input) {
|
|
const output = parseInt(input, 10);
|
|
|
|
if (Number.isNaN(output)) {
|
|
return null;
|
|
}
|
|
|
|
return output;
|
|
}
|
|
|
|
module.exports = tryParseInt;
|