diff options
Diffstat (limited to 'dev/util.js')
-rw-r--r-- | dev/util.js | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/dev/util.js b/dev/util.js index 817b0d84..5a4c5788 100644 --- a/dev/util.js +++ b/dev/util.js @@ -92,16 +92,3 @@ export function createDictionaryArchive(dictionaryDirectory, dictionaryName) { // Return zipFileBlob; } - -/** - * @param {(...args: import('core').SafeAny[]) => (unknown|Promise<unknown>)} func - * @param {...import('core').SafeAny} args - */ -export async function testMain(func, ...args) { - try { - await func(...args); - } catch (e) { - console.log(e); - process.exit(-1); - } -} |