mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-21 05:45:13 +00:00
11 lines
201 B
JavaScript
11 lines
201 B
JavaScript
/*!
|
|
* ws: a node.js websocket client
|
|
* Copyright(c) 2011 Einar Otto Stangvik <einaros@gmail.com>
|
|
* MIT Licensed
|
|
*/
|
|
|
|
exports.Validation = {
|
|
isValidUTF8: function(buffer) {
|
|
return true;
|
|
}
|
|
};
|