From 643c2029d097a841361054d9b9908d4264dc0628 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Dzi=C4=99giel?= Date: Sat, 17 Apr 2021 13:12:58 +0200 Subject: [PATCH] Fix wrong indentation size All the other code uses 4 spaces indent --- src/youtubeItags.js | 44 ++++++++++++++++++++++---------------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/src/youtubeItags.js b/src/youtubeItags.js index 21b32d36..d4c1545d 100644 --- a/src/youtubeItags.js +++ b/src/youtubeItags.js @@ -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)