Node.js examples for Data Type:Serialization
Serialization function for the Boolean datatype
/**/* w ww .j a v a 2 s. c o m*/ * Serialization function for the Boolean datatype. */ Boolean.prototype.serialize = function() { return '<boolean>' + this + '</boolean>'; }