Skip to content

Instantly share code, notes, and snippets.

@boxxxie
Created April 20, 2012 18:21
Show Gist options
  • Save boxxxie/2430849 to your computer and use it in GitHub Desktop.
Save boxxxie/2430849 to your computer and use it in GitHub Desktop.
_.mixin({
toNumber:function(obj){
if(_.isNumber(obj)){
return obj
}
else if(_.isString(obj)){
return parseFloat(obj)
}
else{
return obj
}
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment