mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-10-31 18:48:08 +00:00
8 lines
190 B
JavaScript
8 lines
190 B
JavaScript
import { helper as buildHelper } from '@ember/component/helper';
|
|
|
|
export function includes([haystack, needle]) {
|
|
return haystack.includes(needle);
|
|
}
|
|
|
|
export default buildHelper(includes);
|