You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
186 B

4 years ago
  1. 'use strict';
  2. function tryParseInt(input) {
  3. const output = parseInt(input, 10);
  4. if (Number.isNaN(output)) {
  5. return null;
  6. }
  7. return output;
  8. }
  9. module.exports = tryParseInt;