* Helper function to output a value in the console. Value will be formatted. * @param {*} value
(value)
| 49 | * @param {*} value |
| 50 | */ |
| 51 | function print (value) { |
| 52 | const precision = 14 |
| 53 | console.log(format(value, precision)) |
| 54 | } |
no test coverage detected
searching dependent graphs…