Skip to content

Commit

Permalink
Fixing readme.
Browse files Browse the repository at this point in the history
  • Loading branch information
Renie committed Jun 9, 2020
1 parent e5bb787 commit 4a5b862
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,27 @@ getRelevantPossibleDivisors(8)
// [2]
```

##### isPrime()

###### Receives
```
isPrime(x)
```
Where **x** is a number

###### Returns
Boolean indicator about **x** primality

###### Examples
```
isPrime(7)
// true
```
```
isPrime(9)
// false
```


### Utils
##### bulkFunction()
Expand Down

0 comments on commit 4a5b862

Please sign in to comment.