show readable representation of Date objects in repl
This commit is contained in:
parent
27928ce491
commit
6428ce0c8b
1 changed files with 2 additions and 0 deletions
2
repl.js
2
repl.js
|
@ -1005,6 +1005,8 @@ import * as os from "os";
|
|||
std.puts(a);
|
||||
} else if (stack.indexOf(a) >= 0) {
|
||||
std.puts("[circular]");
|
||||
} else if (a instanceof Date) {
|
||||
std.puts("Date " + a.toGMTString().__quote());
|
||||
} else if (has_jscalc && (a instanceof Fraction ||
|
||||
a instanceof Complex ||
|
||||
a instanceof Mod ||
|
||||
|
|
Loading…
Reference in a new issue