find-dividers
v1.0.4
Published
Find the number of dividers for a number.
Downloads
4
Readme
node-find-dividers
Find all dividers for a given number.
Usage
const findDividers = require("find-dividers");
let divs = findDividers(100);
console.log(divs); // => [1, 2, 4, 5, 10, 20, 25, 50, 100]
API
Can be found in the wiki.