mirror of
https://github.com/ValKmjolnir/Nasal-Interpreter.git
synced 2026-05-22 20:45:45 +08:00
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;
|
|
} |