mirror of
https://github.com/moparisthebest/mailcatcher
synced 2024-12-22 15:28:52 -05:00
One console.log too many.
This commit is contained in:
parent
8137c06c52
commit
858d4c4290
@ -17,7 +17,6 @@ class MailCatcher
|
||||
new Date match[1], match[2], match[3], match[4], match[5], match[6], 0
|
||||
|
||||
formatDate: (date) ->
|
||||
console.log typeof(date)
|
||||
date &&= @parseDate(date) if typeof(date) == "string"
|
||||
date &&= date.toString("dddd, d MMM yyyy h:mm:ss tt")
|
||||
|
||||
|
@ -20,7 +20,6 @@
|
||||
}
|
||||
};
|
||||
MailCatcher.prototype.formatDate = function(date) {
|
||||
console.log(typeof date);
|
||||
if (typeof date === "string") {
|
||||
date && (date = this.parseDate(date));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user