aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib/js
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adam@chlipala.net>2011-07-06 08:35:31 -0400
committerGravatar Adam Chlipala <adam@chlipala.net>2011-07-06 08:35:31 -0400
commitb7fc000f340f2be6f9c0e8f615aa4ae23ecf9d20 (patch)
treed19b9706c7ff2c9e023d8ed9a188e75d35598759 /lib/js
parentc18e3a5165c30aa0475ae938cc083d4fa7bd167d (diff)
Add client-side Basis.now and pretty-printing of times
Diffstat (limited to 'lib/js')
-rw-r--r--lib/js/urweb.js13
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/js/urweb.js b/lib/js/urweb.js
index 35a62d76..272ba32b 100644
--- a/lib/js/urweb.js
+++ b/lib/js/urweb.js
@@ -93,6 +93,19 @@ function length(ls) {
}
+// Time
+
+function showTime(tm) {
+ var newDate = new Date();
+ newDate.setTime(tm / 1000);
+ return newDate.toUTCString();
+}
+
+function now() {
+ return (new Date()).getTime() * 1000;
+}
+
+
// Error handling
function whine(msg) {