mirror of
https://gitlab.silvrtree.co.uk/martind2000/censis-obrand.git
synced 2025-02-04 23:50:15 +00:00
10 lines
182 B
JavaScript
10 lines
182 B
JavaScript
|
import Ember from 'ember';
|
||
|
|
||
|
/*export function eq(params/!*, hash*!/) {
|
||
|
return params;
|
||
|
}*/
|
||
|
|
||
|
const eq = (params) => params[0] === params[1];
|
||
|
|
||
|
export default Ember.Helper.helper(eq);
|