mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-23 00:45:16 +00:00
14 lines
186 B
JavaScript
14 lines
186 B
JavaScript
'use strict';
|
|
|
|
function tryParseInt(input) {
|
|
const output = parseInt(input, 10);
|
|
|
|
if (Number.isNaN(output)) {
|
|
return null;
|
|
}
|
|
|
|
return output;
|
|
}
|
|
|
|
module.exports = tryParseInt;
|