(val, digits)
| 234 | |
| 235 | // pad a number with zeroes, to given # of digits before the decimal point |
| 236 | function lpad(val, digits) { |
| 237 | return String(val + Math.pow(10, digits)).slice(1); |
| 238 | } |
| 239 | |
| 240 | /** |
| 241 | * Turn ms into string of the form YYYY-mm-dd HH:MM:SS.ssss |
no outgoing calls
no test coverage detected
searching dependent graphs…