mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-15 19:17:02 +02: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);
|