mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-17 10:06:17 +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;
|