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