remove es20xx prefixes from plugins and rename folders (#6575)
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
class A {
|
||||
constructor() {
|
||||
console.log('a');
|
||||
}
|
||||
}
|
||||
|
||||
class B {
|
||||
b() {
|
||||
console.log('b');
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
let A = function A() {
|
||||
console.log('a');
|
||||
};
|
||||
|
||||
let B =
|
||||
/*#__PURE__*/
|
||||
function () {
|
||||
function B() {}
|
||||
|
||||
var _proto = B.prototype;
|
||||
|
||||
_proto.b = function b() {
|
||||
console.log('b');
|
||||
};
|
||||
|
||||
return B;
|
||||
}();
|
||||
Reference in New Issue
Block a user