Commit 9a51e95a authored by wildfirecode13's avatar wildfirecode13

1

parent 6bbce7a5
......@@ -22,7 +22,6 @@ var Countdown = /** @class */ (function (_super) {
function Countdown(text, seconds, format, delay) {
var _this = _super.call(this) || this;
_this._running = false;
console.log(_this);
_this._text = text;
_this._seconds = seconds;
_this._format = format;
......
......@@ -14,7 +14,6 @@ export default class Countdown extends EventEmitter<any> {
private _running = false;
constructor(text: any, seconds: any, format: any, delay: any) {
super();
console.log(this);
this._text = text;
this._seconds = seconds;
this._format = format;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment