arithmetic-type/double

View on GitHub
src/logarithmic/loglog.js

Summary

Maintainability
A
0 mins
Test Coverage
export const loglog = (a, b) =>
    Math.log(Math.log(b) / Math.log(a)) / Math.log(a);