Fix linter
This commit is contained in:
@@ -7,7 +7,9 @@ export const fetchAsync = async (
|
||||
timeoutMs: number = 20000,
|
||||
): Promise<Response> => {
|
||||
if (options.signal || (options as any).timeout) {
|
||||
throw new Error('Cannot call fetchAsync with options.signal or options.timeout. To set a timeout, please use the supplied "timeoutMs" parameter.');
|
||||
throw new Error(
|
||||
'Cannot call fetchAsync with options.signal or options.timeout. To set a timeout, please use the supplied "timeoutMs" parameter.',
|
||||
);
|
||||
}
|
||||
let optionsWithAbortParam;
|
||||
if (!isNode) {
|
||||
|
||||
Reference in New Issue
Block a user