https://github.com/gera2ld/promise-lite
A simple and lite promise polyfill.
https://github.com/gera2ld/promise-lite
Last synced: about 1 year ago
JSON representation
A simple and lite promise polyfill.
- Host: GitHub
- URL: https://github.com/gera2ld/promise-lite
- Owner: gera2ld
- Created: 2015-11-28T04:51:43.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2019-01-14T07:47:13.000Z (over 7 years ago)
- Last Synced: 2025-06-25T04:19:47.434Z (about 1 year ago)
- Language: JavaScript
- Size: 19.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
promise-lite
---
[](https://www.npmjs.com/package/@gera2ld/promise-lite)
A lite promise polyfill.
Installation
---
```sh
$ yarn add @gera2ld/promise-lite
```
Usage
---
```js
import LitePromise from '@gera2ld/promise-lite';
window.Promise = window.Promise || LitePromise;
// If you need a synchronous Promise in some special cases
window.Promise = LitePromise.SyncLitePromise;
```