mirror of
https://github.com/linuxserver/core.git
synced 2026-02-20 05:07:19 +08: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;
|
|
}
|
|
};
|
|
|