UNPKG

@yokgs/dyescript-light

Version:

Command Line Interface of lightweight (& pre-published) version of @yokgs/DyeScript

10 lines (7 loc) 190 B
module.exports.activeStyle = function activeStyle($) { let max = 0, mi = 0; $.map((x, i) => { if (x[1] > max) { max = x[1]; mi = i } }) return $[mi][0]; }