mirror of
https://kevinblog.sytes.net/Code/Jibo-Revival-Group/jibo-cli.git
synced 2026-06-15 14:56:21 +00:00
13 lines
210 B
JavaScript
13 lines
210 B
JavaScript
/*!
|
|
* ws: a node.js websocket client
|
|
* Copyright(c) 2011 Einar Otto Stangvik <einaros@gmail.com>
|
|
* MIT Licensed
|
|
*/
|
|
|
|
module.exports.Validation = {
|
|
isValidUTF8: function(buffer) {
|
|
return true;
|
|
}
|
|
};
|
|
|