9 lines
297 B
JavaScript
9 lines
297 B
JavaScript
"use strict";
|
|
|
|
var _classCallCheck = function (instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } };
|
|
|
|
var Test = function Test() {
|
|
_classCallCheck(this, Test);
|
|
|
|
Function.prototype.hasOwnProperty.call(this, "test");
|
|
}; |