all-contributors-cli/lib/generate/formatBadge.js
2016-03-07 00:28:25 +01:00

11 lines
379 B
JavaScript

'use strict';
var _ = require('lodash/fp');
var defaultTemplate = '[![All Contributors](https://img.shields.io/badge/all_contributors-<%= contributors.length %>-orange.svg?style=flat-square)](#contributors)';
module.exports = function formatBadge(options, contributors) {
return _.template(options.badgeTemplate || defaultTemplate)({
contributors: contributors
});
};