some()

areBigInt().some()

Checks whether some provided values of areBigInt() are a bigintarrow-up-right type.

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 areBigInt() are a bigintarrow-up-right type.

Example usage

// Example usage.
import { areBigInt } from '@angular-package/type';

areBigInt(1n, 2, '3').some((result, value, payload) => {
  result // true
  value // [1n, 2, '3']
  payload // undefined
  return result;
});

Last updated