more useful comments in utilities.js

This commit is contained in:
Simon Kornblith 2006-09-06 04:48:13 +00:00
parent 89cf0c7235
commit 7f40d696a4

View file

@ -13,15 +13,11 @@ Scholar.Utilities.prototype.debug = function(msg) {
}
/*
* Converts a JavaScript date object to an SQL-style date
* See Scholar.Date
*/
Scholar.Utilities.prototype.formatDate = function(date) {
return Scholar.Date.formatDate(date);
}
/*
* Converts a JavaScript date object to an SQL-style date
*/
Scholar.Utilities.prototype.strToDate = function(date) {
return Scholar.Date.strToDate(date);
}