blob: 18c69989496afe65dd42055ac5a0eb17e05223b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
'use strict';
/*!
* ws: a node.js websocket client
* Copyright(c) 2011 Einar Otto Stangvik <einaros@gmail.com>
* MIT Licensed
*/
try {
module.exports = require('bufferutil');
} catch (e) {
module.exports = require('./BufferUtil.fallback');
}
|