astra / web /node_modules /ws /lib /BufferUtil.js
Lorenzob's picture
Upload folder using huggingface_hub
19605ab verified
raw
history blame
316 Bytes
'use strict';
/*!
* ws: a node.js websocket client
* Copyright(c) 2011 Einar Otto Stangvik <[email protected]>
* MIT Licensed
*/
var bufferUtil;
try {
bufferUtil = require('bufferutil');
} catch (e) {
bufferUtil = require('./BufferUtil.fallback');
}
module.exports = bufferUtil.BufferUtil || bufferUtil;