2018-01-09 15:36:42 +01:00

12 lines
110 B
JavaScript

"use strict";
const object = {
test() {
new.target;
},
test2: function() {
new.target;
},
}