* Helper function to output a value in the console. Value will be formatted. * @param {*} value
(value)
| 28 | * @param {*} value |
| 29 | */ |
| 30 | function print (value) { |
| 31 | const precision = 14 |
| 32 | console.log(format(value, precision)) |
| 33 | } |
no test coverage detected
searching dependent graphs…