Edge Driver support for "delayBetween"

In my old DTH, I had access to a function that essentially introduced delays between sending multiple commands to a ZWAVE device. How best to do this with the new Edge Driver environment.

Here is an output of the old documentation.

If you want to send more than one Z-Wave command, you can return a list of formatted command strings. It is often a good idea to add a delay between commands to give the device an opportunity to finish processing each command and possibly send a response before receiving the next command. To add a delay between commands, include a string of the form "delay N" where N is the number of milliseconds to delay. There is a helper method delayBetween that will take a list of commands and insert delay commands between them

As always, thanks.