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