eventman/static/js/eventman.js

8 lines
205 B
JavaScript

/** Utilities for EventMan. */
/* getTime method for string to convert them into Date objects. */
String.prototype.getTime = function() {
var ms = Date.parse(this);
return new Date(ms);
};