@parasrp/delay 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +19 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# @parasrp/delay
|
|
2
|
+
|
|
3
|
+
A small and simple JavaScript utility to pause execution for a specified number of milliseconds.
|
|
4
|
+
|
|
5
|
+
## ✨ Features
|
|
6
|
+
|
|
7
|
+
- Lightweight and fast
|
|
8
|
+
- Promise-based
|
|
9
|
+
- No dependencies
|
|
10
|
+
- Works in any modern JavaScript environment
|
|
11
|
+
|
|
12
|
+
---
|
|
13
|
+
|
|
14
|
+
## 📦 Installation
|
|
15
|
+
|
|
16
|
+
Install using npm:
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
npm install @parasrp/delay
|