mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-12 07:36:42 +08:00
5 lines
132 B
TypeScript
5 lines
132 B
TypeScript
const toAsync = (promise: Promise<unknown>) =>
|
|
promise.then(data => [null, data]).catch(err => [err]);
|
|
|
|
export default toAsync;
|