rafinskipg/git-changelog

View on GitHub
tasks/lib/print-salute.js

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
'use strict';

var debug = require('debug')('changelog:printSalute');

function printSalute(stream) {
  debug('printing salute');
  stream.write('\n\n---\n');
  stream.write('<sub><sup>*Generated with [git-changelog](https://github.com/rafinskipg/git-changelog). If you have any problems or suggestions, create an issue.* :) **Thanks** </sub></sup>');
}

module.exports = printSalute;