- Consolidated duplicate UndoManagers to single instance - Fixed connection promise to only resolve on 'connected' status - Fixed WebSocketProvider import (WebsocketProvider) - Added proper doc.destroy() cleanup - Renamed isPresenceInitialized property to avoid conflict Co-Authored-By: Paperclip <noreply@paperclip.ing>
17 lines
345 B
JavaScript
17 lines
345 B
JavaScript
'use strict';
|
|
|
|
var Promise = require('./core.js');
|
|
|
|
module.exports = Promise;
|
|
Promise.prototype.finally = function (f) {
|
|
return this.then(function (value) {
|
|
return Promise.resolve(f()).then(function () {
|
|
return value;
|
|
});
|
|
}, function (err) {
|
|
return Promise.resolve(f()).then(function () {
|
|
throw err;
|
|
});
|
|
});
|
|
};
|