UNPKG

solid-grecaptcha

Version:

> Package based on [solid-hcaptcha](https://github.com/Vexcited/solid-hcaptcha) using g-recaptcha of google

7 lines (6 loc) 240 B
export const generateScriptUrl = (onLoadFunctionName) => { const domain = "https://www.google.com/recaptcha/api.js"; const url = new URL(domain); url.searchParams.set("onload", onLoadFunctionName); return url.toString(); };