Last updated 3 years ago
Was this helpful?
areString().some()
Checks whether some of the provided of are a type or an instance of .
The method uses method of .
The return value is a indicating whether some of the provided of are a type or an instance of .
// Example usage. import { areString } from '@angular-package/type'; areString(1, '2', '3').some((result, value, payload) => { result // true value // [1, '2', '3'] payload // undefined return result; }); // true, boolean
areString()
string
String
some()
areDeterminer()
boolean
values