From 283073a227d297c4ebf28599caf01f41d97d078c Mon Sep 17 00:00:00 2001 From: Benjamin Jesuiter Date: Tue, 5 Feb 2019 10:33:23 +0100 Subject: [PATCH] fix missing param in section 'avoid side effects part 1' in 'good example' --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 42bf395..45ea1bf 100644 --- a/README.md +++ b/README.md @@ -649,7 +649,7 @@ function toBase64(text:string):string { return btoa(text); } -const encodedName = toBase64(); +const encodedName = toBase64(name); console.log(name); ```