12 lines
158 B
JavaScript
12 lines
158 B
JavaScript
"use strict";
|
|
|
|
var Test = (function () {
|
|
var Test = function Test() {};
|
|
|
|
Test.prototype.test = function () {
|
|
return 5 + 5;
|
|
};
|
|
|
|
return Test;
|
|
})();
|