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

module.exports = function (array, len, options) {
  var cond = _.isArray(array) && array.length === +len;
  return cond ? options.fn(this) : options.inverse(this);
};