mirror of https://github.com/webpack/webpack.git
fix(css): correct CC_UPPER_U typo (E -> U) (#19989)
This commit is contained in:
parent
f3ef1428b3
commit
b7530c2510
|
@ -66,7 +66,7 @@ const CC_LOWER_Z = "z".charCodeAt(0);
|
|||
const CC_UPPER_A = "A".charCodeAt(0);
|
||||
const CC_UPPER_F = "F".charCodeAt(0);
|
||||
const CC_UPPER_E = "E".charCodeAt(0);
|
||||
const CC_UPPER_U = "E".charCodeAt(0);
|
||||
const CC_UPPER_U = "U".charCodeAt(0);
|
||||
const CC_UPPER_Z = "Z".charCodeAt(0);
|
||||
const CC_0 = "0".charCodeAt(0);
|
||||
const CC_9 = "9".charCodeAt(0);
|
||||
|
|
Loading…
Reference in New Issue