Code Monkey home page Code Monkey logo

promise's People

Contributors

monolithed avatar octane avatar targos avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

promise's Issues

Return settled promise

This code doesn't work in the Promise polyfill:

var p1 = Promise.resolve(),
    p2 = Promise.resolve();

p1.then(function () {
    return p2;
}).then(function () {
    //never be called in the polyfill
});

The native Promise works differently in Chrome and Aurora

The polyfill works like the Promise in Chrome:

var p1 = new Promise(function (resolve) {
        resolve();
    }),
    p2 = new Promise(function (resolve) {
        resolve();
    });

p1.then(p2).then(function () {
    //Aurora 31
}, function () {
    //Chrome 36
});

Browser support

Testing in the polyfill service was showing that this polyfill worked in all our test browsers, but actually that turns out to have been due to a bug in the tests. Could you post browser support numbers on the README of the project?

Here are our results with your polyfill:

IE: 11, 10, 9 pass; 8, 7, 6 fail
FF: 29, 33, 34 native; 20 pass; 3.6 fail
Chrome: 24 native; 26 pass
Safari: 5, 6, 7 pass

Thenable value support

For example:

var thenable = {
    then: function (onFulfilled) {
        onFulfilled(5);
    }
};

Promise.resolve(thenable).then(function (value) {
    console.log(value); // 5
});

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.