fix(es/helpers): Export classPrivateFieldLooseKey as default (#4047)

This commit is contained in:
troy351 2022-03-16 19:30:50 +08:00 committed by GitHub
parent 8fc902d6a3
commit 025c921409
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,5 +1,5 @@
var id = 0;
export function _classPrivateFieldLooseKey(name) {
export default function _classPrivateFieldLooseKey(name) {
return "__private_" + id++ + "_" + name;
}