FileTransfer.prototype.abort = function()

in www/browser/FileTransfer.js [354:361]


FileTransfer.prototype.abort = function () {
    if (this instanceof FileTransfer) {
        if (transfers[this._id]) {
            transfers[this._id].abort();
            delete transfers[this._id];
        }
    }
};