Press n or j to go to the next uncovered block, b, p or k for the previous block.
import {isNone, Option} from 'fnxt/option'; export const toArray = <T>(option: Option<T>): [] | [T] => isNone(option) ? [] : [option.value];