File size: 201 Bytes
19605ab |
1 2 3 4 5 6 7 8 9 10 11 12 |
/*!
* ws: a node.js websocket client
* Copyright(c) 2011 Einar Otto Stangvik <[email protected]>
* MIT Licensed
*/
exports.Validation = {
isValidUTF8: function(buffer) {
return true;
}
};
|