Skip to content

Commit 5b27c1a

Browse files
authored
Update conversions.js (#6290)
Add missing parenthesis.
1 parent a57445b commit 5b27c1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

css-color-4/conversions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ function lin_ProPhoto(RGB) {
122122
let sign = val < 0? -1 : 1;
123123
let abs = Math.abs(val);
124124

125-
if (abs <= Et2 {
125+
if (abs <= Et2) {
126126
return val / 16;
127127
}
128128

0 commit comments

Comments
 (0)