A boolean value which is eiter true or false. If it's omitted false
is default value.
Processes all the chained objects and calls the specified function
block
with the result value as its argument and returns the original result.
A callback function that accepts an argument.
Processes all the chained objects and calls the specified function
block
with the result value as its argument and returns the final result
of the block
.
A callback function that accepts an argument. The method calls the block
and returns its result.
Processes all the chained objects ane returns Promise<void>
.
Processed all the chained object and returns original KoconutBoolean instance.
Processes all the chained objects and return the result.
Generated using TypeDoc
Creates a new instance from
boolean
.1.0.15
const koconutBoolean = await new KoconutBoolean(true) // ↑ This is a KoconutBoolean instance, of which value is true. const koconutBoolean = await new KoconutBoolean() // ↑ This is a KoconutBoolean instance, of which value is false.