mirror of
https://github.com/labs42io/clean-code-typescript.git
synced 2025-04-17 14:43:36 +00:00
fix missing param in section 'avoid side effects part 1' in 'good example'
This commit is contained in:
parent
e63678480c
commit
283073a227
1 changed files with 1 additions and 1 deletions
|
@ -649,7 +649,7 @@ function toBase64(text:string):string {
|
|||
return btoa(text);
|
||||
}
|
||||
|
||||
const encodedName = toBase64();
|
||||
const encodedName = toBase64(name);
|
||||
|
||||
console.log(name);
|
||||
```
|
||||
|
|
Loading…
Add table
Reference in a new issue