Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
public initRecaptchaV3(): Promise {
return load(this.envService.getVal('RECAPTCHA_SITE_KEY')).then(
reCaptcha => {
this.reCaptcha = reCaptcha;
}
);
}
public async initializeReCaptcha (options: IReCaptchaOptions): Promise {
return loadReCaptcha(options.siteKey, options.loaderOptions)
}
}