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