Files
freeCodeCamp/client/src/utils/is-contained.ts
Victor Duarte 310bbdf54b fix(client): store challenge panes sizes (#42519)
Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com>
2021-06-17 23:50:39 +05:30

5 lines
182 B
TypeScript

// Performs a check if the items in `value` exist in `other`
export function isContained(value: string[], other: string[]): boolean {
return value.every(i => other.includes(i));
}