An open API service indexing awesome lists of open source software.

https://github.com/semibran/divisible

Determine if one number is divisible by another
https://github.com/semibran/divisible

arithmetic divisible division math

Last synced: 6 months ago
JSON representation

Determine if one number is divisible by another

Awesome Lists containing this project

README

          

# divisible
> Determine if one number is divisible by another

```js
> const divisible = require('divisible')
undefined

> divisible(4, 2)
true

> divisible(8, 3)
false
```

## install
```sh
npm install divisible
```

## license
[MIT](https://opensource.org/licenses/MIT) © [Brandon Semilla](https://git.io/semibran)