UNPKG

lightfold

Version:

lightweight scaffolding and archiving utility CLI.

14 lines (9 loc) 186 B
'use strict'; function tryParseInt(input) { const output = parseInt(input, 10); if (Number.isNaN(output)) { return null; } return output; } module.exports = tryParseInt;