UNPKG

@onlabsorg/stilo

Version:

Command line tool for managing olojs document packages

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; };