aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/helpers/handlebars/ifMeasureShouldBeShown.js
blob: 3a34038510728b621c512209b848d89730653749 (plain)
1
2
3
4
5
6
7
module.exports = function (measure, period, options) {
  if (measure != null || period != null) {
    return options.fn(this);
  } else {
    return options.inverse(this);
  }
};