export function toClout(n: number | null | undefined): number | undefined { if (n == null) { return undefined } else { return Math.max(0, Math.round(Math.log(n))) } }