UNPKG
color-tf
Version:
latest (5.1.2)
next (5.0.0-beta1)
5.1.2
5.1.1
5.1.0
5.0.4
5.0.3
5.0.2
5.0.1
5.0.0
5.0.0-beta1
RGB, HSL, HSV, HWB and more color models convertors
github.com/caub/color-tf
caub/color-tf
color-tf
/
hwb2hsv.js
6 lines
(3 loc)
•
125 B
JavaScript
View Raw
1
2
3
4
5
6
'use strict'
;
var
hwb2hsv
= (
h, w, b
) => [h, b ===
1
?
0
:
Math
.
max
(
0
,
1
- w / (
1
- b)),
1
- b];
module
.
exports
= hwb2hsv;