Fix wrong indentation size

All the other code uses 4 spaces indent
This commit is contained in:
Rafał Dzięgiel
2021-04-17 13:12:58 +02:00
parent 9799783ee5
commit 643c2029d0

View File

@@ -1,27 +1,27 @@
const Itags = {
video: {
h264: {
normal: {
240: 133,
360: 134,
480: 135,
720: 136,
1080: 137,
},
hfr: {
720: 298,
1080: 299,
},
video: {
h264: {
normal: {
240: 133,
360: 134,
480: 135,
720: 136,
1080: 137,
},
hfr: {
720: 298,
1080: 299,
},
},
},
},
audio: {
aac: [140],
opus: [249, 250, 251],
},
combined: {
360: 18,
720: 22,
}
audio: {
aac: [140],
opus: [249, 250, 251],
},
combined: {
360: 18,
720: 22,
}
};
function _appendItagArray(arr, opts, formats)