remote: support arguments of type Date

This commit is contained in:
Robo 2015-12-30 01:41:31 +05:30
parent 5f3c6107d5
commit 72374b6e31
4 changed files with 16 additions and 1 deletions

View file

@ -1,3 +1,7 @@
exports.print = function(obj) {
return obj.constructor.name;
}
exports.echo = function(obj) {
return obj;
}