mirror of
https://github.com/all-contributors/cli.git
synced 2025-01-10 14:06:34 +00:00
12 lines
380 B
JavaScript
12 lines
380 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
|
|||
|
});
|
|||
|
};
|