https://github.com/yeion7/can-divide-in
Find all numbers that can divide
https://github.com/yeion7/can-divide-in
Last synced: about 1 month ago
JSON representation
Find all numbers that can divide
- Host: GitHub
- URL: https://github.com/yeion7/can-divide-in
- Owner: yeion7
- License: other
- Created: 2016-06-26T16:10:57.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-06-26T16:33:37.000Z (almost 9 years ago)
- Last Synced: 2024-04-26T03:21:19.148Z (about 1 year ago)
- Language: JavaScript
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# can-divide
Find all numbers that can divide## API
### Use
```javascript
import canDivideIn from 'can-divide-in'canDivideIn(4) // [1, 2, 4]
canDivideIn(36) // [1, 2, 3, 4, 6, 9, 12, 18, 36]
```