Hello, in upgrading I found out that a newly added arrow function breaks compatibility with IE. Could it be avoided?
Here:
const transformFn = encoding === 'hsl'
? c => c // If HSL return as incame
: colorsys.getTransformEncodingFunction(nextHsl, encoding)
if (typeof transformFn !== 'function') {
return color
}
Hello, in upgrading I found out that a newly added arrow function breaks compatibility with IE. Could it be avoided?
Here:
const transformFn = encoding === 'hsl'
? c => c // If HSL return as incame
: colorsys.getTransformEncodingFunction(nextHsl, encoding)
if (typeof transformFn !== 'function') {
return color
}