📄️ Melon.std.time.setTimeout(action, delay)
Sets a timer which executes a function or specified piece of code once the timer expires.
📄️ Melon.std.time.setInterval(action, delay)
Sets a timer which executes a function or specified piece of code once the timer expires and do it repeatedly in loop.
📄️ Melon.std.time.clearInterval(identifier)
Cancels a timed, repeating action which was previously established by a call to Melon.std.time.setInterval().
📄️ Melon.std.time.clearTimeout(identifier)
Cancels a timed action which was previously established by a call to Melon.std.time.setTimeout().
📄️ Melon.std.time.Timer (class)
Represents a timer that is used internally by timeout functions to control timed operations