Add timer to Promise.all, map
问题 I would like to add some timeout between below get requests. I mean, flow should be looks like: timeout, https://example.com/example1, timeout, https://example.com/example2, timeout, https://example.com/example3, timeout etc. (or without first timeout, whatever). Below function is working properly: function promiseGetInformationFromMultipleUrls(parts) { return Promise.all(parts.map(part => { return request({ 'url': `https://example.com/${part}`, 'json': true }).then(partData => {console.log(