npm install hsv-rgbConvert HSV values to RGB. This is essentially the hsv2rgb function found in pqx/color-functions, however this module returns an array rather than an dictionary.

sh
$ npm install hsv-rgb
`API
`js
rgb(h, s, v)
`$3
` js
var rgb = require('hsv-rgb')rgb(36, 76, 86)
> [219, 153, 53]
rgb.apply(null, [36, 76, 86])
> [219, 153, 53]
``