UNPKG

n4s

Version:

typed schema validation version of enforce

5 lines (4 loc) 154 B
// Checks if array contains the given item export function includes<T>(arr: T[], item: T): boolean { return Array.isArray(arr) && arr.includes(item); }