Skip to content

Commit

Permalink
Merge pull request #734 from lzgabel/patch-1
Browse files Browse the repository at this point in the history
fix: typos
  • Loading branch information
saig0 authored Sep 26, 2023
2 parents 6c4759a + 2b761a1 commit eb41fee
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,13 +77,13 @@ get or else(value: Any, default: Any): Any
**Examples**

```js
get or default("this", "default")
get or else("this", "default")
// "this"

get or default(null, "default")
get or else(null, "default")
// "default"

get or default(null, null)
get or else(null, null)
// null
```

Expand Down

0 comments on commit eb41fee

Please sign in to comment.