9 lines
153 B
JavaScript
9 lines
153 B
JavaScript
"use strict";
|
|
|
|
var Test = function() {
|
|
var Test = function Test() {
|
|
Function.prototype.hasOwnProperty.call(this, "test");
|
|
};
|
|
|
|
return Test;
|
|
}(); |