Skip to content

Commit d90c53b

Browse files
author
Steven
committed
fix: reformat using prettier
1 parent f72fd3d commit d90c53b

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

lib/components/component.test.ts

+6-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,12 @@ const badPairs = [
6262
[sink, sink],
6363
]
6464

65-
const goodPairs = [[source, pass], [source, sink], [pass, pass], [pass, sink]]
65+
const goodPairs = [
66+
[source, pass],
67+
[source, sink],
68+
[pass, pass],
69+
[pass, sink],
70+
]
6671

6772
describe('connect', () => {
6873
test('bad pairs should not be allowed to be connected', () => {

lib/components/mp4muxer/helpers/isom.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -973,7 +973,10 @@ class Header {
973973
}
974974

975975
static Box(type: string) {
976-
return [['size', UInt32BE, 0], ['type', CharArray, type]]
976+
return [
977+
['size', UInt32BE, 0],
978+
['type', CharArray, type],
979+
]
977980
}
978981

979982
static FullBox(type: string) {

lib/utils/protocols/sdp.test.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,11 @@ describe('Sdp', () => {
8484
control:
8585
'rtsp://hostname/axis-media/media.amp/stream=0?audio=1&video=1',
8686
framerate: 25,
87-
transform: [[1, 0, 0], [0, 0.75, 0], [0, 0, 1]],
87+
transform: [
88+
[1, 0, 0],
89+
[0, 0.75, 0],
90+
[0, 0, 1],
91+
],
8892
},
8993
{
9094
type: 'audio',

0 commit comments

Comments
 (0)