6 lines
149 B
Plaintext
Raw Normal View History

2022-08-07 14:14:04 -07:00
function nam(anything, val) { //not anything mod
return !(anything%val);
}
function ngm(val) { //not global.count mod
return !(global.count%val);
}