forked from xxq250/Nasal-Interpreter
6 lines
120 B
Plaintext
6 lines
120 B
Plaintext
# utils.nas
|
|
# 2023 by ValKmjolnir
|
|
|
|
var times_trigger = func(times, count) {
|
|
return math.mod(times, count)==0;
|
|
} |