Advertisement
Guest User

Untitled

a guest
Feb 13th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function scaledown_rai (amount) {
  2.     if (amount.length <= Mrai.length)
  3.         return "0";
  4.     else
  5.         return amount.substr (0, amount.length - Mrai.length)
  6. }
  7.  
  8. function scaleup_rai (amount) {
  9.     return amount.concat (Mrai)
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement