Skip to content

Instantly share code, notes, and snippets.

@kanakiyajay
Last active August 29, 2015 14:05
Show Gist options
  • Save kanakiyajay/50068192e883ce201993 to your computer and use it in GitHub Desktop.
Save kanakiyajay/50068192e883ce201993 to your computer and use it in GitHub Desktop.
Angular: Simple functions
function int(str) {
return parseInt(str, 10);
}
function isUndefined(value){return typeof value === 'undefined';}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment