Subversion Repositories qbpwcf-lib(archive)

Rev

Rev 915 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 liveuser 1
/*!
2
 * UTF-8 Validation Fallback Code originally from:
3
 * ws: a node.js websocket client
4
 * Copyright(c) 2011 Einar Otto Stangvik <einaros@gmail.com>
5
 * MIT Licensed
6
 */
7
 
8
module.exports.Validation = {
9
  isValidUTF8: function() {
10
    return true;
11
  }
12
};