You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
408 B
TypeScript
19 lines
408 B
TypeScript
// Copyright (C) 2020-2022 Intel Corporation
|
|
//
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
import { getCore } from 'cvat-core-wrapper';
|
|
|
|
const core = getCore();
|
|
|
|
export default async (url: string, method: string): Promise<boolean> => {
|
|
try {
|
|
await core.server.request(url, {
|
|
method,
|
|
});
|
|
return true;
|
|
} catch (error) {
|
|
return ![0, 404].includes(error.code);
|
|
}
|
|
};
|