UNPKG
quxt
Version:
latest (1.1.1)
1.1.1
1.1.0
1.0.0
Lodash but OVERPOWERED!
github.com/quxapp/quxt
quxapp/quxt
quxt
/
.internal
/
factor.js
10 lines
(9 loc)
•
143 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
function
factor
(d, nums) {
for
(num of nums) {
if
(num % d !== 0) {
return
false
} }
return
true
} module.exports =
factor