@jhormanrus/zxcvbn-lang-es

The Spanish language package for zxcvbn-ts

Usage no npm install needed!

<script type="module">
  import jhormanrusZxcvbnLangEs from 'https://cdn.skypack.dev/@jhormanrus/zxcvbn-lang-es';
</script>

README

@jhormanrus/zxcvbn-lang-es

The Spanish dictionary and language package for zxcvbn-ts

Install

npm:

npm install @jhormanrus/zxcvbn-lang-es --save

Setup

import zxcvbn from '@zxcvbn-ts/core'
import zxcvbnCommonPackage from '@zxcvbn-ts/language-common'
import zxcvbnEsPackage from '@jhormanrus/zxcvbn-lang-es'

const password = 'somePassword'
const options = {
  translations: zxcvbnEsPackage.translations,
  dictionary: {
    ...zxcvbnCommonPackage.dictionary,
    ...zxcvbnEsPackage.dictionary,
  },
}

zxcvbn(password, options)