UNPKG

debt-collector

Version:

a nodejs tool to identify, track and mesure technical debt

8 lines (7 loc) 140 B
export const getResultColor = (nb) => { if (nb > 0) return 'red'; if (nb < 0) return 'green'; return 'grey'; };