Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jed committed Nov 21, 2021
1 parent fdea111 commit be25518
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ In this case, we have a module that generates the first 50 fibonacci numbers lik
```js
let fib = n => n < 2 ? 1 : fib(n - 1) + fib(n - 2)

export default Array.from({length: 50}, (_, n) => fib(n))
export default Array.from({length: 30}, (_, n) => fib(n))
```

Importing it without this plugin like this:
Expand Down

0 comments on commit be25518

Please sign in to comment.