One console.log too many.

This commit is contained in:
Samuel Cochran 2011-05-29 20:28:04 +08:00
parent 8137c06c52
commit 858d4c4290
2 changed files with 0 additions and 2 deletions

View File

@ -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")

View File

@ -20,7 +20,6 @@
}
};
MailCatcher.prototype.formatDate = function(date) {
console.log(typeof date);
if (typeof date === "string") {
date && (date = this.parseDate(date));
}