10 lines
106 B
JavaScript

function fn() {
return new class {
#priv;
method(obj) {
return #priv in obj;
}
}
}