* fix: support static private field destructure set ([C.#p] = [0]) * 🚧 * fix: add compatibility warning for older @babel/helper versions * refactor: extract common routines among classPrivateFiled helpers * More 🚧
12 lines
237 B
JavaScript
12 lines
237 B
JavaScript
var Foo = function Foo(props) {
|
|
"use strict";
|
|
|
|
babelHelpers.classCallCheck(this, Foo);
|
|
[babelHelpers.classStaticPrivateFieldDestructureSet(Foo, Foo, _client).value] = props;
|
|
};
|
|
|
|
var _client = {
|
|
writable: true,
|
|
value: void 0
|
|
};
|