Update all non-major dependencies (#468)

* Update all non-major dependencies

* Iterate PR

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
renovate[bot]
2022-12-01 07:20:55 +00:00
committed by GitHub
parent 19351d766d
commit f4bf425148
13 changed files with 71 additions and 70 deletions

View File

@@ -29,7 +29,7 @@ const client = new S3Client({
},
});
const templateLayout = (content: string) => `
const templateLayout = (content: string): string => `
<!DOCTYPE html>
<html>
<head>
@@ -80,7 +80,7 @@ const templateLayout = (content: string) => `
*
* @return Formatted string.
*/
function humanFileSize(bytes: number, si = false, dp = 1) {
function humanFileSize(bytes: number, si = false, dp = 1): string {
const thresh = si ? 1000 : 1024;
if (Math.abs(bytes) < thresh) {