UNPKG

monex

Version:

Execute one or multiple scripts, interactively or in daemon mode, and restart them whenever they crash or a watched file changes.

13 lines (12 loc) 284 B
/* IMPORT */ /* MAIN */ const Color = { /* API */ inferColor: (nr) => { const colors = ['blue', 'magenta', 'yellow', 'cyan', 'red', 'green']; const index = Math.abs(nr) % colors.length; return colors[index]; } }; /* EXPORT */ export default Color;