Example Usage
<script type="module" src="https://unpkg.com/@mathiscode/password-leak@latest"></script>

<script type="module">
  const isLeaked = await isPasswordLeaked('myPassword');
  const strength = await checkPasswordStrength('myPassword');
  console.log('Is leaked?', isLeaked);
  console.log('Strength', strength);
</script>