(ms, func)
| 200 | |
| 201 | // Convenience wrapper for setTimeout (with the arguments around the other way). |
| 202 | setTimeout(ms, func) { |
| 203 | return setTimeout(func, ms); |
| 204 | }, |
| 205 | |
| 206 | // Like Nodejs's nextTick. |
| 207 | nextTick(func) { |
no outgoing calls
no test coverage detected