Coder Social home page Coder Social logo

Comments (1)

getify avatar getify commented on August 10, 2024

NPO adds ES6 promises to pre-ES6 environments that have no promises at all. It's not designed or intended to be a polyfill on top of native promises for further post-ES6 additions to the promise API.

There are a number of polyfill options for recent amendments to promises (like finally), which can be used on top of native-promise-only. In the case of finally, it's actually quite easy to polyfill in a simple/naive way:

// adapted from: https://gist.github.com/spiralx/58675999ca5b28453538d30859761947
if (!Promise.prototype.finally) {
  Promise.prototype.finally = function finally(callback){
    return this.then(
      value => this.constructor.resolve(callback()).then(() => value),
      reason => this.constructor.resolve(callback()).then(() => { throw reason })
    );
  }
}

You could probably just copy-n-paste that snippet in the code bundle where you're already including native-promise-only and I bet it would work fine (haven't tried it myself, tbf).


There are other polyfills that are a little bit more robust and strictly spec adherent (for extreme spec nuances) if you're worried about the far corner cases. For example, there's this very popular one: https://www.npmjs.com/package/promise.prototype.finally Note that this one can optionally include a separate polyfill for Promise, so you could switch from native-promise-only completely.

from native-promise-only.

Related Issues (20)

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.