From 372f3740792a85771b5dafae58f6106f4c9e4b8c Mon Sep 17 00:00:00 2001 From: HaveAGitGat <43864057+HaveAGitGat@users.noreply.github.com> Date: Tue, 3 Dec 2019 16:39:49 +0000 Subject: [PATCH] Formatting change --- methods/library/actions/remuxContainer.js | 6 +++--- methods/library/filters/filterByAge.js | 6 +++--- methods/library/filters/filterByCodec.js | 12 ++++++------ methods/library/filters/filterByMedium.js | 6 +++--- methods/library/filters/filterByResolution.js | 10 +++++----- methods/library/filters/filterBySize.js | 6 +++--- 6 files changed, 23 insertions(+), 23 deletions(-) diff --git a/methods/library/actions/remuxContainer.js b/methods/library/actions/remuxContainer.js index 95beee1..6c080f5 100644 --- a/methods/library/actions/remuxContainer.js +++ b/methods/library/actions/remuxContainer.js @@ -9,7 +9,7 @@ function remuxContainer(file, container) { var response = { processFile: true, - note:`File is not in ${container} \\n` + note:`File is not in ${container} \n` } return response @@ -17,7 +17,7 @@ function remuxContainer(file, container) { var response = { processFile: false, - note:`File is already in ${container} \\n` + note:`File is already in ${container} \n` } return response @@ -28,7 +28,7 @@ function remuxContainer(file, container) { } catch (err) { var response = { processFile: false, - note:`library.actions.remuxContainer error: ${err} \\n` + note:`library.actions.remuxContainer error: ${err} \n` } return response } diff --git a/methods/library/filters/filterByAge.js b/methods/library/filters/filterByAge.js index ebffab6..91135e4 100644 --- a/methods/library/filters/filterByAge.js +++ b/methods/library/filters/filterByAge.js @@ -13,7 +13,7 @@ function filterByAge(file, ageCutOff_Seconds) { var response = { outcome: false, - note: `☒File creation date is older than specified requirement. \\n` + note: `☒File creation date is older than specified requirement. \n` } return response @@ -21,7 +21,7 @@ function filterByAge(file, ageCutOff_Seconds) { var response = { outcome: true, - note: `☑File creation date is within specified requirement. \\n` + note: `☑File creation date is within specified requirement. \n` } return response @@ -30,7 +30,7 @@ function filterByAge(file, ageCutOff_Seconds) { } catch (err) { var response = { outcome: false, - note: `library.filters.filterByAge error: ${err} \\n` + note: `library.filters.filterByAge error: ${err} \n` } return response } diff --git a/methods/library/filters/filterByCodec.js b/methods/library/filters/filterByCodec.js index 05c301b..1930365 100644 --- a/methods/library/filters/filterByCodec.js +++ b/methods/library/filters/filterByCodec.js @@ -13,7 +13,7 @@ function filterByCodec(file, mode, codecs) { var response = { outcome: true, - note: `☑Codec included \\n` + note: `☑Codec included \n` } return response @@ -21,7 +21,7 @@ function filterByCodec(file, mode, codecs) { var response = { outcome: false, - note: `☒Codec excluded \\n` + note: `☒Codec excluded \n` } return response @@ -33,7 +33,7 @@ function filterByCodec(file, mode, codecs) { var response = { outcome: false, - note: `☒Codec excluded \\n` + note: `☒Codec excluded \n` } return response @@ -41,7 +41,7 @@ function filterByCodec(file, mode, codecs) { var response = { outcome: true, - note: `☑Codec not excluded \\n` + note: `☑Codec not excluded \n` } return response @@ -50,7 +50,7 @@ function filterByCodec(file, mode, codecs) { var response = { outcome: false, - note: `library.filters.filterByCodec error: ${err} \\n` + note: `library.filters.filterByCodec error: ${err} \n` } return response @@ -60,7 +60,7 @@ function filterByCodec(file, mode, codecs) { console.log(err) var response = { outcome: false, - note: `Filter error hello! ${err}\\n` + note: `Filter error hello! ${err}\n` } return response } diff --git a/methods/library/filters/filterByMedium.js b/methods/library/filters/filterByMedium.js index 2fa0453..588b81f 100644 --- a/methods/library/filters/filterByMedium.js +++ b/methods/library/filters/filterByMedium.js @@ -8,7 +8,7 @@ function filterByMedium(file, medium) { var response = { outcome: false, - note: `☒File is not ${medium} \\n` + note: `☒File is not ${medium} \n` } return response @@ -16,7 +16,7 @@ function filterByMedium(file, medium) { var response = { outcome: true, - note: `☑File is ${medium} \\n` + note: `☑File is ${medium} \n` } return response } @@ -24,7 +24,7 @@ function filterByMedium(file, medium) { } catch (err) { var response = { outcome: false, - note: `library.filters.filterByMedium error: ${err} \\n` + note: `library.filters.filterByMedium error: ${err} \n` } return response } diff --git a/methods/library/filters/filterByResolution.js b/methods/library/filters/filterByResolution.js index f71bdc9..16293d1 100644 --- a/methods/library/filters/filterByResolution.js +++ b/methods/library/filters/filterByResolution.js @@ -10,7 +10,7 @@ function filterByResolution(file, mode, resolution) { var response = { outcome: false, - note: `☒File is in excluded resolution. \\n` + note: `☒File is in excluded resolution. \n` } return response @@ -18,7 +18,7 @@ function filterByResolution(file, mode, resolution) { var response = { outcome: true, - note: `☑File is not in excluded resolution. \\n` + note: `☑File is not in excluded resolution. \n` } return response @@ -30,7 +30,7 @@ function filterByResolution(file, mode, resolution) { var response = { outcome: true, - note: `☑File is in included resolution. \\n` + note: `☑File is in included resolution. \n` } return response @@ -38,7 +38,7 @@ function filterByResolution(file, mode, resolution) { var response = { outcome: false, - note: `☒File is not in included resolution. \\n` + note: `☒File is not in included resolution. \n` } return response @@ -48,7 +48,7 @@ function filterByResolution(file, mode, resolution) { } catch (err) { var response = { outcome: false, - note: `library.filters.filterByResolution error: ${err} \\n` + note: `library.filters.filterByResolution error: ${err} \n` } return response } diff --git a/methods/library/filters/filterBySize.js b/methods/library/filters/filterBySize.js index 64abc78..5e6bc08 100644 --- a/methods/library/filters/filterBySize.js +++ b/methods/library/filters/filterBySize.js @@ -8,7 +8,7 @@ function filterBySize(file, lowerBound, upperBound) { var response = { outcome: true, - note: `☑File size is within filter limits. \\n` + note: `☑File size is within filter limits. \n` } return response @@ -16,7 +16,7 @@ function filterBySize(file, lowerBound, upperBound) { var response = { outcome: false, - note: `☒File size is not within filter limits. \\n` + note: `☒File size is not within filter limits. \n` } return response @@ -25,7 +25,7 @@ function filterBySize(file, lowerBound, upperBound) { } catch (err) { var response = { outcome: false, - note: `library.filters.filterBySize error: ${err} \\n` + note: `library.filters.filterBySize error: ${err} \n` } return response }