Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

zr_test_demo_d

dahuiyi6ISC1.0.1

`javascript function say(val, time) { return new Promise((resolve, reject) => { setTimeout(() => { console.log(val) resolve(); }, time); }) } async function fn() { await say(1, 1000); aw

readme

`javascript function say(val, time) { return new Promise((resolve, reject) => { setTimeout(() => { console.log(val) resolve(); }, time); }) } async function fn() { await say(1, 1000); await say(2, 2000); await say(3, 3000); await say(4, 4000); await say(5, 5000); } fn();