@qso-soft/shared
Version:
Shared library for QSO-soft
8 lines • 617 B
JavaScript
export const isRecaptchaTask = (taskType) => taskType.startsWith('Recaptcha');
export const isImageToTextCaptchaTask = (taskType) => taskType === 'ImageToTextTask';
export const isImageToCoordsCaptchaTask = (taskType) => taskType === 'ImageToCoordinatesTask';
export const isGeeTestTask = (taskType) => taskType.startsWith('GeeTest');
export const isHCaptchaTask = (taskType) => taskType.startsWith('HCaptcha');
export const isTurnstileTask = (taskType) => taskType.startsWith('Turnstile');
export const isFunCaptchaTask = (taskType) => taskType.startsWith('FunCaptcha');
//# sourceMappingURL=anticaptcha-types.js.map