fix: Typo in @babel/helper-create-class-features-plugin (#13237)

This commit is contained in:
aancer-rca 2021-04-30 11:40:28 -04:00 committed by GitHub
parent 41c02246fb
commit 3b55e8877c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,10 +11,7 @@ export const FEATURES = Object.freeze({
const featuresSameLoose = new Map([ const featuresSameLoose = new Map([
[FEATURES.fields, "@babel/plugin-proposal-class-properties"], [FEATURES.fields, "@babel/plugin-proposal-class-properties"],
[FEATURES.privateMethods, "@babel/plugin-proposal-private-methods"], [FEATURES.privateMethods, "@babel/plugin-proposal-private-methods"],
[ [FEATURES.privateIn, "@babel/plugin-proposal-private-property-in-object"],
FEATURES.privateIn,
"@babel/plugin-proposal-private-private-property-in-object",
],
]); ]);
// We can't use a symbol because this needs to always be the same, even if // We can't use a symbol because this needs to always be the same, even if