Validation.fallback.js 201 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11
/*!
 * ws: a node.js websocket client
 * Copyright(c) 2011 Einar Otto Stangvik <einaros@gmail.com>
 * MIT Licensed
 */

exports.Validation = {
  isValidUTF8: function(buffer) {
    return true;
  }
};