1
0
Ответвление 0
eventman/static/js/eventman.js

8 строки
205 Б
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);
};