JSFiddle - React, Tailwind, and code Playground

JavaScript

$.when({
    promise: function() {
        return { 
            then: function() { alert('not done actually'); }
        };
    }
}).then(function() { alert('done') });;