You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/**
* Utility function for async/await code.
* @param {number} ms - milliseconds to wait
* @return {Promise} A promise to be resolved after ms milliseconds later.
*/
function sleep(ms) {
return new Promise(function(resolve) {
setTimeout(resolve, ms);
});
}
The text was updated successfully, but these errors were encountered:
polyfill などのコードで関数定義の上にその関数と引数、返り値などの説明を jsdoc 形式で付け足して、開発時にツールチップ表示されたり API ドキュメント作ったりが出来る形にしたい。
したいなと思ったので issue は立てますが全然急ぎのことではないので Future マイルストーン付けます。
具体的には次のように書くって話です via 43187e2
The text was updated successfully, but these errors were encountered: