websoket/node_modules/streamws/lib/Validation.fallback.js
developertrinidad08 7e6cf29479 first commit
2023-01-16 18:11:14 -03:00

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;
}
};