* Helper function to output a value in the console. Value will be formatted. * @param {*} value
(value)
| 59 | * @param {*} value |
| 60 | */ |
| 61 | function print (value) { |
| 62 | const precision = 14 |
| 63 | console.log(format(value, precision)) |
| 64 | } |
no test coverage detected
searching dependent graphs…