Ghost/ghost/admin/app/helpers/is-not.js

10 lines
165 B
JavaScript
Raw Normal View History

import {helper} from 'ember-helper';
export function isNot(params) {
return !params;
}
export default helper(function (params) {
return isNot(params);
});