UNPKG
wickr-bedrock-bot
Version:
beta (1.0.0-beta.16)
latest (1.0.0-beta.0)
1.0.0-beta.16
1.0.0-beta.15
1.0.0-beta.14
1.0.0-beta.13
1.0.0-beta.12
1.0.0-beta.11
1.0.0-beta.10
1.0.0-beta.9
1.0.0-beta.8
1.0.0-beta.7
1.0.0-beta.5
1.0.0-beta.4
1.0.0-beta.3
1.0.0-beta.2
1.0.0-beta.1
1.0.0-beta.0
AWS Wickr's own Bedrock Bot
wickr-bedrock-bot
/
bots
/
node_modules
/
@smithy
/
node-http-handler
/
dist-es
/
stream-collector
/
collector.js
12 lines
(11 loc)
•
273 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
{
Writable
}
from
"stream"
;
export
class
Collector
extends
Writable
{
constructor
(
) {
super
(...
arguments
);
this
.
bufferedBytes
= []; }
_write
(
chunk, encoding, callback
) {
this
.
bufferedBytes
.
push
(chunk);
callback
(); } }