Press n or j to go to the next uncovered block, b, p or k for the previous block.
export function easeInOutCubic(t: number): number { return t < 0.5 ? 4 * t * t * t : 1 - Math.pow(-2 * t + 2, 3) / 2; }