option-t

Installation
npm install --save option-t
Usage
var OptionT = require('option-t');
var some = new OptionT.Some(1);
console.log(some.isSome);
console.log(some.unwrap());
var none = new OptionT.None();
console.log(none.isSome);
console.log(none.unwrap());
JSON Representation
Some<T>
new Some(1)
will be:
{
"is_some": true,
"value": 1
}
None
new None()
will be:
{
"is_some": false
}
API
Cast Option<T>
to Promise
.
If you'd like to cast Option<T>
to a Promise
like object,
you can write a custom cast function or use Option<T>.mapOrElse()
.
function castToPromise1(option: Option<T>): Promise<T> {
return option.mapOrElse(() => Promise.reject(), (v: T) => Promise.resolve(v));
}
function castToPromise2(option: Option<T>): Promise<{ ok: boolean; value: T }> {
const result = {
ok: false,
value: undefined,
};
return option.mapOrElse(() => {
return Promise.resolve(result);
}, (v: T) => {
result.ok = true;
result.value = v;
return Promise.resolve(v);
});
}
In previous version (~v0.17), we provide Option<T>.asPromise()
utility method for this purpose.
Its methods always treats None
as a rejected Promise
.
But there are various cases which we would not like to cast to a Promise from an Optional type with single way,
there are various context to handle a None
value.
Thus we don't provide a default way to cast to Promise
. Please define a most suitable way to your project.
Semantics
This library represents Option type in ECMAScript.
So this object will be the one of following states:
Some<T>
option instanceof OptionT.Some
option.isSome === true
.
None
option instanceof OptionT.None
option.isSome === false
.
Option<T>
This type is a interface to represent Option<T>
.
Some<T>
and None
must implement this Option<T>
interface.
This is just interface. This is not exported to an environment
which has no interface feature as a part of its type system like TypeScript.
If you'd like to check whether the object option
is Option<T>
or not in such an environment,
you can use option instanceof OptionT.OptionBase
to check it.
But this way is not a tier-1 approach. We recommend to use a interface and type system strongly.
We export OptionT.OptionBase
object to the type definition for TypeScript, but this is only for
the compatibility to cooperate with some libralies which are use instanceof
checking
to work together with others in the pure JavaScript world.
Our basic stance is that you should not use OptionT.OptionBase
and need not it in almost case in TypeScript or other static typed languages.
Some<T>
This type represents that there are some values T
.
If this value wraps null
, it just means that there is a null value.
None
(None<T>
)
This type represents that there is no value explicitly.
It is just None !== null
.
License
MIT License