Home Manual Reference Source

src/logarithmic/loglog.js

export const loglog = (a, b) =>
	Math.log(Math.log(b) / Math.log(a)) / Math.log(a);