Skip to content
This repository has been archived by the owner on May 22, 2022. It is now read-only.

Finickyflame/Promise-Polyfill

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Promise-Polyfill

Build Status

Add the functionalities to support Promises in older browsers. The implementation is purely based on the ECMA's specifications.

For more informations on how to use the Promise object, see Mozzila's Promise reference

How to use

Browser

<script src="promise.js"></script>
<script>
  var promise = new Promise(function(resolve, reject) {
     ...
  });
</script>

Features

##Licence The MIT License (MIT)