You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
252 B

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