UNPKG

telebot

Version:

The easy way to write Telegram bots.

18 lines (15 loc) 222 B
'use strict'; module.exports = async ( promise, onFinally = (() => {}) ) => { let value; try { value = await promise; } catch (error) { await onFinally(); throw error; } await onFinally(); return value; };