mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-17 03:57:01 +02:00
8 lines
160 B
JavaScript
8 lines
160 B
JavaScript
import Ember from 'ember';
|
|
|
|
export function includes([haystack, needle]) {
|
|
return haystack.includes(needle);
|
|
}
|
|
|
|
export default Ember.Helper.helper(includes);
|