Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fengdonglp/fd-promise
根据Promise/A+规范实现一个Promise(ES5)
https://github.com/fengdonglp/fd-promise
javascript promise
Last synced: 24 days ago
JSON representation
根据Promise/A+规范实现一个Promise(ES5)
- Host: GitHub
- URL: https://github.com/fengdonglp/fd-promise
- Owner: fengdonglp
- License: mit
- Created: 2018-07-31T07:10:11.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-08-08T16:48:55.000Z (over 6 years ago)
- Last Synced: 2024-11-17T18:11:57.559Z (3 months ago)
- Topics: javascript, promise
- Language: JavaScript
- Size: 23.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ES5实现的Promise
[![JavaScript Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://standardjs.com)## 实现的Api
- Promise.prototype.then
- Promise.prototype.catch
- Promise.prototype.finally
- Promise.resolve
- Promise.reject
- Promise.all
- Promise.race参考:
[http://www.cnblogs.com/huansky/p/6064402.html](http://www.cnblogs.com/huansky/p/6064402.html)
[http://bruce-xu.github.io/blogs/js/promise](http://bruce-xu.github.io/blogs/js/promise)