跳转到主要内容

@babel/plugin-transform-private-property-in-object

信息

此插件包含在 @babel/preset-env 中,位于 ES2022

示例

输入

JavaScript
class Foo {
#bar = "bar";

test(obj) {
return #bar in obj;
}
}

输出

JavaScript
class Foo {
constructor() {
_bar.set(this, {
writable: true,
value: "bar",
});
}

test() {
return _bar.has(this);
}
}

var _bar = new WeakMap();

安装

npm install --save-dev @babel/plugin-transform-private-property-in-object

用法

babel.config.json
{
"plugins": ["@babel/plugin-transform-private-property-in-object"]
}

通过 CLI

Shell
babel --plugins @babel/plugin-transform-private-property-in-object

通过 Node API

JavaScript
require("@babel/core").transformSync("code", {
plugins: ["@babel/plugin-transform-private-property-in-object"],
});

选项

loose

boolean,默认为 false

注意

loose 模式配置设置必须@babel/transform-class-properties 相同。

如果为 true,则私有属性 in 表达式将检查对象自身的属性(而不是继承的属性),而不是检查 WeakSet 中是否存在。这将以可能通过 Object.getOwnPropertyNames 等方式泄露“私有”属性为代价,提高性能和调试能力(普通属性访问与 .get())。

警告

考虑迁移到顶级 privateFieldsAsProperties 假设。

babel.config.json
{
"assumptions": {
"privateFieldsAsProperties": true,
"setPublicClassFields": true
}
}

请注意,privateFieldsAsPropertiessetPublicClassFields 都必须设置为 true

示例

输入

JavaScript
class Foo {
#bar = "bar";

test(obj) {
return #bar in obj;
}
}

输出

JavaScript
class Foo {
constructor() {
Object.defineProperty(this, _bar, {
writable: true,
value: "bar",
});
}

test() {
return Object.prototype.hasOwnProperty.call(this, _bar);
}
}

var _bar = babelHelpers.classPrivateFieldLooseKey("bar");
提示

您可以在此处阅读有关配置插件选项的更多信息

参考