import * as optio from "https://deno.land/x/optio@1.0.0/operators/transform.ts"; FunctionsffilterReturns None if the option is None, otherwise calls predicate with the wrapped value and returns: Some if predicate returns true. None if predicate returns false. fflatConverts from Option<Option<T>> to Option<T>. fmapMaps an Option<T> to Option<U> by applying a function to a contained value(if Some) or returns None(if None). fmapOrReturns the provided default value (if None), or applies a function to the contained value (if Some). fmapOrElseComputes a default function result (if None), or applies a different function to the contained value (if Some). fzipZips option with another Option.