mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-18 21:21:06 +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);
|