Combinatorsjustjust Callablejust<T>(x: T): TCreates a Just from the given value. Examplejust("foobar")// => "foobar"Type parametersT: unknownThe Just type.Parametersx: TThe either object to unpack.Returns TThe just value.
Creates a Just from the given value.
Example