Initial work is done

This commit is contained in:
2023-03-31 00:34:58 -05:00
parent f605af2d57
commit 9c37f61d71
2899 changed files with 299478 additions and 0 deletions

12
node_modules/ws/lib/constants.js generated vendored Normal file
View File

@@ -0,0 +1,12 @@
'use strict';
module.exports = {
BINARY_TYPES: ['nodebuffer', 'arraybuffer', 'fragments'],
EMPTY_BUFFER: Buffer.alloc(0),
GUID: '258EAFA5-E914-47DA-95CA-C5AB0DC85B11',
kForOnEventAttribute: Symbol('kIsForOnEventAttribute'),
kListener: Symbol('kListener'),
kStatusCode: Symbol('status-code'),
kWebSocket: Symbol('websocket'),
NOOP: () => {}
};