function sleep()

in stress-test/echo.js [18:20]


function sleep(ms) {
    return new Promise(resolve => setTimeout(resolve, ms));
}