mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 07:09:48 +03:00
10 lines
165 B
JavaScript
10 lines
165 B
JavaScript
import {helper} from 'ember-helper';
|
|
|
|
export function isNot(params) {
|
|
return !params;
|
|
}
|
|
|
|
export default helper(function (params) {
|
|
return isNot(params);
|
|
});
|