Press n or j to go to the next uncovered block, b, p or k for the previous block.
export const _toLazyIndexed = <T>(fn: T): T & { indexed: true } => { (fn as any).indexed = true; return fn as any; };