https://github.com/draeder/studder
A simple sleep operation
https://github.com/draeder/studder
Last synced: about 1 month ago
JSON representation
A simple sleep operation
- Host: GitHub
- URL: https://github.com/draeder/studder
- Owner: draeder
- License: mit
- Created: 2024-03-24T22:01:25.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-24T22:11:11.000Z (about 1 year ago)
- Last Synced: 2024-03-25T22:11:32.331Z (about 1 year ago)
- Language: JavaScript
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# studder
A simple sleep operation## Install
```
npm i studder
```## Usage
```js
import studder from "studder"console.log('Waiting starts');
await studder(3000); // Waits for 3 seconds
console.log('3 seconds have passed');
```