Skip to content

Commit dcc70d8

Browse files
committed
ci: Format code
1 parent 3468193 commit dcc70d8

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

api/fake-seam-connect.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,9 @@ const getFakeDevicedb = async (): Promise<FakeDevicedb> => {
113113
return fake
114114
}
115115

116-
const getArrayBufferFromReadableStream = async (readable: Readable): Promise<ArrayBuffer> => {
116+
const getArrayBufferFromReadableStream = async (
117+
readable: Readable
118+
): Promise<ArrayBuffer> => {
117119
const chunks = []
118120
for await (const chunk of readable) {
119121
chunks.push(typeof chunk === 'string' ? Buffer.from(chunk) : chunk)

0 commit comments

Comments
 (0)