shierro/territory-manager

View on GitHub
internals/scripts/helpers/checkmark.js

Summary

Maintainability
A
0 mins
Test Coverage
const chalk = require('chalk');

/**
 * Adds mark check symbol
 */
function addCheckMark(callback) {
  process.stdout.write(chalk.green(' ✓'));
  if (callback) callback();
}

module.exports = addCheckMark;