Created initial assets

This commit is contained in:
2025-10-07 10:42:46 -06:00
parent acfc7685f4
commit 377ab91af7
16 changed files with 3298 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
Provide only code without comments or explanations.
### INPUT:
async sleep in js
### OUTPUT:
```javascript
async function timeout(ms) {
return new Promise(resolve => setTimeout(resolve, ms));
}
```