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

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

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]
```