Skip to content

Instantly share code, notes, and snippets.

@JakeTheCorn
Created January 31, 2020 18:27
Show Gist options
  • Save JakeTheCorn/3d20b685adaab77b51b4689c1ffd7bea to your computer and use it in GitHub Desktop.
Save JakeTheCorn/3d20b685adaab77b51b4689c1ffd7bea to your computer and use it in GitHub Desktop.
function isInt(v) {
if (typeof v !== 'number') {
return false;
}
return v % 1 === 0;
}
// todo: write tests
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment