Skip to content

Instantly share code, notes, and snippets.

@basarat
Created March 11, 2016 01:51
Show Gist options
  • Save basarat/a4693aa2945983fafb8a to your computer and use it in GitHub Desktop.
Save basarat/a4693aa2945983fafb8a to your computer and use it in GitHub Desktop.
function toInt(str: string): { valid: boolean, int?: number } {
const int = parseInt(str);
if (isNaN(int)) {
return { valid: false };
}
else {
return { valid: true, int };
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment