Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 400 Bytes

README.md

File metadata and controls

20 lines (15 loc) · 400 Bytes

Promise

Simple Promise implementation

Use it if Promise is not implemented:

if(!window.Promise) {
  Promise = function(.....)
}

Supports:

  • resolve
  • reject
  • then (also in chain)
  • catch
  • all
  • race

Used as a part of Edequate framework.

Fiddle is here.