angular-promise-polyfill

0.0.4 • Public • Published

angular-promise-polyfill

This module provide Promise support via using angular $q service.

Instructions

npm install angular-promise-polyfill

Then just include this module to your project and add to main Angular app dependencies.

require('angular-promise-polyfill');
 
let app = angular.module('myApp', [promisePolyfill, ...]);
 
// Now you can use Promise anywhere
 
var promise1 = new Promise((resolve, reject) => {
    setTimeout(() => {
        resolve('second');
    }, 2000);
});
 
var promise2 = new Promise((resolve, reject) => {
    setTimeout(() => {
        resolve('first');
    }, 1000);
});
 
Promise.race([promise1, promise2])
    .then((result) => {
        //Logs 'first'
        console.log(result);
    })

Big thanks

Original answer from Rob / robianmcd (https://gist.github.com/robianmcd/8f04507acd014b57b95a) Thanks man! =)

Package Sidebar

Install

npm i angular-promise-polyfill

Weekly Downloads

138

Version

0.0.4

License

GPL-3.0

Last publish

Collaborators

  • wilix-lead