UNPKG

badge-size

Version:

Displays the size of a given file in your repository

13 lines (11 loc) 250 B
/** * Update color based on size constraints. * * @param {object} baton */ function constraints(baton) { baton.color = baton.size > baton.softmax ? 'yellow' : baton.size > baton.max ? 'red' : baton.color } module.exports = constraints