Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alsotang/ko-sleep
https://github.com/alsotang/ko-sleep
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/alsotang/ko-sleep
- Owner: alsotang
- License: mit
- Created: 2015-11-14T20:13:53.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2021-09-30T11:44:34.000Z (over 3 years ago)
- Last Synced: 2024-10-29T19:22:14.036Z (2 months ago)
- Language: TypeScript
- Size: 9.77 KB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ko-sleep
[![Build Status](https://travis-ci.org/alsotang/ko-sleep.svg)](https://travis-ci.org/alsotang/ko-sleep)
A promise wrapper for `setTimeout`
## usage
```js
sleep(time: number | string): Promise
```time - millisecond number, or '1s' which https://www.npmjs.com/package/ms support
## example
```js
import sleep from 'ko-sleep'await sleep(3 * 1000)
await sleep('3s')
```## license
MIT