avocado-type-checker
Version:
A javascript type checker. Also a tasty fruit with megafauna dispersal syndrome, leading to an evolutionary anachronism.
18 lines (14 loc) • 342 B
JavaScript
export default function(arr, typeName) {
if (!Array.isArray(arr)) {
throw new Error('arr needs to be an array');
}
if (typeof typeName !== 'string') {
throw new Error('typeName needs to be string');
}
for (var i = 0; i < arr.length; i++) {
if (arr[i].typeName === typeName) {
return i;
}
}
return -1;
}