mirror of
https://github.com/arnaucube/raspberryGPIOhtmlserver.git
synced 2026-02-08 04:06:43 +01:00
13 lines
210 B
JavaScript
Executable File
13 lines
210 B
JavaScript
Executable File
/*!
|
|
* 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;
|
|
}
|
|
};
|
|
|