Skip to content

Commit 562402e

Browse files
author
jdotrjs
committed
[fixes phaserjs#3482] HueToComponent was not correctly exporting itself
Pretty self explanatory -- `module.export` is a typo, needed to be `exports`. Filed associated bug phaserjs#3482.
1 parent d8e378b commit 562402e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/display/color/HueToComponent.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,4 @@ var HueToComponent = function (p, q, t)
4747
return p;
4848
};
4949

50-
module.export = HueToComponent;
50+
module.exports = HueToComponent;

0 commit comments

Comments
 (0)