Revision 2ae1c1c56561aec56a2790d901802b7bfd00b72c authored by David Braun on 29 March 2013, 04:36:18 UTC, committed by David Braun on 29 March 2013, 04:36:18 UTC
Increase compliance with the WebSocket API:

http://www.w3.org/TR/2012/CR-websockets-20120920/#the-websocket-
interface
1 parent 3293702
Raw File
Validation.fallback.js
/*!
 * 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;
  }
};

back to top