Loler.js 415 B

12345678910
  1. var __extends = (this && this.__extends) || function (d, b) {for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];function __() { this.constructor = d; };__.prototype = b.prototype;d.prototype = new __();};
  2. var Loler = (function(_super) {
  3. __extends(Loler, _super);
  4. function Loler (lol) {
  5. if(lol == "lol") console.log("LOL!"); else console.log("NOT LOL :(");
  6. };
  7. ;
  8. return Loler;
  9. })(Object);
  10. module.exports = Loler;