aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/helpers/handlebars/withoutFirst.js
blob: da5f1c528e0bda012915b03da898a25dcb734914 (plain)
1
2
3
4
5
6
7
8
9
module.exports = function (list, options) {
  if (list && list.length > 1) {
    return list.slice(1).reduce(function (prev, current) {
      return prev + options.fn(current);
    }, '');
  } else {
    return '';
  }
};