Added initial homebridge setup
This commit is contained in:
30
src/Util/Callbackify.ts
Normal file
30
src/Util/Callbackify.ts
Normal file
@@ -0,0 +1,30 @@
|
||||
|
||||
/**
|
||||
* 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[] = [];
|
||||
let maybeCallback: Function | null = null;
|
||||
|
||||
for (const arg of args) {
|
||||
if (typeof arg === 'function') {
|
||||
maybeCallback = arg;
|
||||
break;
|
||||
}
|
||||
|
||||
onlyArgs.push(arg);
|
||||
}
|
||||
|
||||
if (!maybeCallback) {
|
||||
throw new Error("Missing callback parameter!");
|
||||
}
|
||||
|
||||
const callback = maybeCallback;
|
||||
|
||||
func(...onlyArgs)
|
||||
.then((data: any) => callback(null, data))
|
||||
.catch((err: any) => callback(err))
|
||||
}
|
||||
}
|
||||
3
src/Util/Sleep.ts
Normal file
3
src/Util/Sleep.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
export function sleep(ms: number) {
|
||||
return new Promise(resolve => setTimeout(resolve, ms));
|
||||
}
|
||||
Reference in New Issue
Block a user