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