We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3468193 commit dcc70d8Copy full SHA for dcc70d8
api/fake-seam-connect.ts
@@ -113,7 +113,9 @@ const getFakeDevicedb = async (): Promise<FakeDevicedb> => {
113
return fake
114
}
115
116
-const getArrayBufferFromReadableStream = async (readable: Readable): Promise<ArrayBuffer> => {
+const getArrayBufferFromReadableStream = async (
117
+ readable: Readable
118
+): Promise<ArrayBuffer> => {
119
const chunks = []
120
for await (const chunk of readable) {
121
chunks.push(typeof chunk === 'string' ? Buffer.from(chunk) : chunk)
0 commit comments