From d9102e93cf7b90d266b66330b16bd5bd5fafcc80 Mon Sep 17 00:00:00 2001 From: kjirou Date: Sat, 15 Oct 2022 14:47:21 +0900 Subject: [PATCH] Correct a mistake in the sample code on README --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index bab26eae..834e0501 100644 --- a/readme.md +++ b/readme.md @@ -76,7 +76,7 @@ const configuration = { }; try { - await favicons(source, configuration); + const response = await favicons(source, configuration); console.log(response.images); // Array of { name: string, contents: } console.log(response.files); // Array of { name: string, contents: }