In applyStyle(), the arguments are String objects, not string literals (see https://github.com/Marak/colors.js/commit/7f146faff3e1b24a845587c07745b9ea0b864f62). We should either get to the bottom of why this is the case, or, if possible, make everything string literals. String objects are discouraged and can cause surprising issues (like typeof returning 'object' not 'string').
In
applyStyle()
, the arguments areString
objects, not string literals (see https://github.com/Marak/colors.js/commit/7f146faff3e1b24a845587c07745b9ea0b864f62). We should either get to the bottom of why this is the case, or, if possible, make everything string literals. String objects are discouraged and can cause surprising issues (liketypeof
returning'object'
not'string'
).