aboutsummaryrefslogtreecommitdiff
path: root/node_modules/ws/lib/Validation.fallback.js
blob: 639b0d316d03e960413fb9786095f08cfbc9b4b4 (plain)
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;
  }
};