Created
June 10, 2014 15:08
-
-
Save shvyrev/70d442517112f8822f61 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
commented
Jul 18, 2015
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment