[fixes #3482] HueToComponent was not correctly exporting itself

Pretty self explanatory -- `module.export` is a typo, needed to be `exports`. Filed associated bug #3482.
This commit is contained in:
jdotrjs 2018-03-30 16:25:59 -07:00
parent d8e378b052
commit 562402e440

View file

@ -47,4 +47,4 @@ var HueToComponent = function (p, q, t)
return p;
};
module.export = HueToComponent;
module.exports = HueToComponent;