Returns all multiples of an array of numbers below a maximum number.
npm install multiples-of
/*
Return an array of all the natural numbers below 10 that are multiples of 2 or 3.
*/
var multiplesOf = require('multiples-of');
console.log( multiplesOf([2, 3], 10) ) // [ 0, 2, 3, 4, 6, 8, 9 ]
MIT