every()
areBoolean().every()
areBoolean().every()
Checks whether every of the provided values
of areBoolean()
is a boolean
type or an instance of Boolean
.
Returns
The return value is a boolean
indicating whether the provided values
of areBoolean()
are a boolean
type or an instance of Boolean
.
Example usage
// Example usage.
import { areBoolean } from '@angular-package/type';
areBoolean(1, true, null, new Boolean(3)).every((result, value, payload) => {
result // false
value // [1, true, null, Boolean]
payload // undefined
return result;
}); // false, boolean
Last updated
Was this helpful?