(value: string[], other: string[])
| 1 | // Performs a check if the items in `value` exist in `other` |
| 2 | export function isContained(value: string[], other: string[]): boolean { |
| 3 | return value.every(i => other.includes(i)); |
| 4 | } |
no outgoing calls
no test coverage detected