mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 15:12:58 +03:00
12 lines
203 B
JavaScript
12 lines
203 B
JavaScript
import {helper} from 'ember-helper';
|
|
|
|
export function isEqual(params) {
|
|
let [lhs, rhs] = params;
|
|
|
|
return lhs === rhs;
|
|
}
|
|
|
|
export default helper(function (params) {
|
|
return isEqual(params);
|
|
});
|