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

sh
$ npm install rgb-hsv
`API
`js
hsv(r, g, b)
`$3
` js
var hsv = require('rgb-hsv')hsv(219, 152, 52)
> [36, 76, 86]
hsv.apply(null, [219, 152, 52])
> [36, 76, 86]
``