12 lines
155 B
JavaScript
12 lines
155 B
JavaScript
"use strict";
|
|
|
|
const object = {
|
|
test() {
|
|
void 0;
|
|
},
|
|
|
|
test2: function _target() {
|
|
this instanceof _target ? this.constructor : void 0;
|
|
}
|
|
};
|