Files
marco/app/helpers/includes.js
Râu Cao 200100686d
Some checks failed
CI / Lint (pull_request) Successful in 52s
CI / Test (pull_request) Failing after 56s
Optionally add tag to place photo
2026-06-05 18:24:36 +04:00

7 lines
203 B
JavaScript

import { helper } from '@ember/component/helper';
export default helper(function includes([collection, value]) {
if (!Array.isArray(collection)) return false;
return collection.includes(value);
});