Node.js examples for String:String Value
Serialization functions for the String datatype
/**/*from ww w .j a v a 2s. com*/ * Serialization functions for the String datatype. */ String.prototype.serialize = function() { return '<string>' + this + '</string>'; }