14 lines
199 B
JavaScript
14 lines
199 B
JavaScript
let exfiltrated;
|
|
|
|
class Cl {
|
|
static #privateStaticMethod() {
|
|
return 1017;
|
|
}
|
|
|
|
constructor() {
|
|
if (exfiltrated === undefined) {
|
|
exfiltrated = Cl.#privateStaticMethod;
|
|
}
|
|
}
|
|
}
|