Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
s-taylor committed Jun 3, 2019
1 parent c965469 commit a4fa25c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ const result = arr.filter(unique);
// result === [1, 2, 3, 4, 5, 8, 9];
```

Though to be honest, you could copy and paste this. It's really small and I won't begrudge you for doing that, but maybe give me a star?

### Copy Paste

Though to be honest, you could copy and paste this. It's really small and I won't begrudge you for doing that, but maybe give me a star?

```js
function unique(elem, index, array) {
for (var i = 0; i < index; i++) {
Expand Down

0 comments on commit a4fa25c

Please sign in to comment.