(number, width)
| 23 | return text; |
| 24 | } |
| 25 | function zeroFill(number, width) { |
| 26 | width -= number.toString().length; |
| 27 | if (width > 0) |
| 28 | return new Array(width + (/\./.test(number) ? 2 : 1)).join('0') + number; |
| 29 | return number + ""; |
| 30 | } |
| 31 | function int64(low, hi) { |
| 32 | this.low = (low >>> 0); |
| 33 | this.hi = (hi >>> 0); |