Skip to content

Instantly share code, notes, and snippets.

@shvyrev
Created June 10, 2014 15:08
Show Gist options
  • Save shvyrev/70d442517112f8822f61 to your computer and use it in GitHub Desktop.
Save shvyrev/70d442517112f8822f61 to your computer and use it in GitHub Desktop.
private function truncateDecimal(value:Number):Number {
return Number(value.toFixed(1)) - Number(value.toFixed(0)) == 0 ? Number(value.toFixed(0)) : Number(value.toFixed(1));
}
@donotfeedaslender
Copy link

 

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment