An open API service indexing awesome lists of open source software.

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

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');
```