aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/helpers/handlebars/ifLengthGT.js
blob: c2c2d7fb0251d3fa916b9cdcbb339029de756eba (plain)
1
2
3
4
5
import _ from 'underscore';

module.exports = function (array, len, options) {
  return _.size(array) > len ? options.fn(this) : options.inverse(this);
};