Commit 9a51e95a authored by wildfirecode13's avatar wildfirecode13

1

parent 6bbce7a5
...@@ -22,7 +22,6 @@ var Countdown = /** @class */ (function (_super) { ...@@ -22,7 +22,6 @@ var Countdown = /** @class */ (function (_super) {
function Countdown(text, seconds, format, delay) { function Countdown(text, seconds, format, delay) {
var _this = _super.call(this) || this; var _this = _super.call(this) || this;
_this._running = false; _this._running = false;
console.log(_this);
_this._text = text; _this._text = text;
_this._seconds = seconds; _this._seconds = seconds;
_this._format = format; _this._format = format;
......
...@@ -14,7 +14,6 @@ export default class Countdown extends EventEmitter<any> { ...@@ -14,7 +14,6 @@ export default class Countdown extends EventEmitter<any> {
private _running = false; private _running = false;
constructor(text: any, seconds: any, format: any, delay: any) { constructor(text: any, seconds: any, format: any, delay: any) {
super(); super();
console.log(this);
this._text = text; this._text = text;
this._seconds = seconds; this._seconds = seconds;
this._format = format; 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