(x, n, acc)
| 9367 | var nativeToFixed = uncurryThis(1.0.toFixed); |
| 9368 | |
| 9369 | var pow = function (x, n, acc) { |
| 9370 | return n === 0 ? acc : n % 2 === 1 ? pow(x, n - 1, acc * x) : pow(x * x, n / 2, acc); |
| 9371 | }; |
| 9372 | |
| 9373 | var log = function (x) { |
| 9374 | var n = 0; |
no outgoing calls
no test coverage detected