some()

areBoolean().some()

Checks whether some of the provided values of areBoolean() are a booleanarrow-up-right type or an instance of Booleanarrow-up-right.

circle-info

The method uses some() method of areDeterminer().

Returns

The return value is a booleanarrow-up-right indicating whether some of the provided values of areBoolean() are a booleanarrow-up-right type or an instance of Booleanarrow-up-right.

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, boolean

Last updated