This commit is contained in:
Rikki Gibson 2018-07-13 18:46:01 -07:00
Родитель f88b06c853
Коммит bd56bbea31
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -20,9 +20,10 @@ export const isNode = typeof navigator === "undefined" && typeof process !== "un
* @param args
*/
export function responseToBody(httpOperationResponseMethod: Function, ...args: any[]) {
const callback = args[args.length-1];
const callback = args[args.length - 1];
if (typeof callback === "function") {
httpOperationResponseMethod(...args.slice(0, args.length-1))
httpOperationResponseMethod(...args.slice(0, args.length - 1))
// tslint:disable-next-line:no-null-keyword
.then((res: HttpOperationResponse) => callback(null, res.parsedBody, res.request, res))
.catch((err: any) => callback(err));
} else {