Skip to content

Commit

Permalink
dumper: fixed date dump
Browse files Browse the repository at this point in the history
  • Loading branch information
matej21 committed Nov 10, 2014
1 parent 92e259b commit 64437a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dumper.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ var Decoder = require('./decoder');

function toText(xvar) {
if (xvar instanceof Date) {
return "(date) " + xvar.toJSON() + ")";
return "(date) " + xvar.toJSON();

} else if (xvar instanceof Entity) {
var attrs = '';
Expand Down

0 comments on commit 64437a2

Please sign in to comment.