some()
areBoolean().some()
areBoolean().some()Checks whether some of the provided values of areBoolean() are a boolean type or an instance of Boolean.
Returns
The return value is a boolean indicating whether some of 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)).some((result, value, payload) => {
result // true
value // [1, true, null, Boolean]
payload // undefined
return result;
}); // true, booleanLast updated
Was this helpful?