0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-03 23:00:14 -05:00
ghost/core/client/app/helpers/is-not.js

12 lines
187 B
JavaScript
Raw Normal View History

import Ember from 'ember';
const {Helper} = Ember;
export function isNot(params) {
return !params;
}
export default Helper.helper(function (params) {
return isNot(params);
});