7 lines
127 B
JavaScript
7 lines
127 B
JavaScript
var Test = function () {
|
|
function Test() {
|
|
Function.prototype.hasOwnProperty.call(this, "test");
|
|
}
|
|
return Test;
|
|
}();
|