UNPKG

pixelbutler

Version:

Low-res bitmap render engine for big screens

14 lines (13 loc) 324 B
'use strict'; var HSV = (function () { function HSV(h, s, v) { if (typeof h === "undefined") { h = 0; } if (typeof s === "undefined") { s = 0; } if (typeof v === "undefined") { v = 0; } this.h = h; this.s = s; this.v = v; } return HSV; })(); module.exports = HSV;