0.1.0 • Published 3 years ago

@jhormanrus/zxcvbn-lang-es v0.1.0

Weekly downloads
7
License
MIT
Repository
github
Last release
3 years ago

@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)