aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/helpers/handlebars/isNull.js
blob: 0a9882468a0ef0dc8aad4b83c9bcc4a52e32546d (plain)
1
2
3
module.exports = function (value, options) {
  return value == null ? options.fn(this) : options.inverse(this);
};