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