cscg24-guacamole

CSCG 2024 Challenge 'Guacamole Mashup'
git clone https://git.sinitax.com/sinitax/cscg24-guacamole
Log | Files | Refs | sfeed.txt

BufferUtil.js (316B)


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