Code cleanup. Added comments.
This commit is contained in:
@ -1,5 +1,8 @@
|
||||
|
||||
|
||||
/**
|
||||
* Helper function to convert callbacks into promises
|
||||
* @param func
|
||||
*/
|
||||
export default function callbackify(func: (...args: any[]) => Promise<any>): Function {
|
||||
return (...args: any[]) => {
|
||||
const onlyArgs: any[] = [];
|
||||
|
Reference in New Issue
Block a user