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
- Host: GitHub
- URL: https://github.com/semibran/divisible
- Owner: semibran
- License: mit
- Created: 2017-06-04T18:59:49.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-06-04T18:59:54.000Z (over 8 years ago)
- Last Synced: 2025-02-12T18:59:16.813Z (8 months ago)
- Topics: arithmetic, divisible, division, math
- Language: JavaScript
- Size: 1000 Bytes
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: license
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)