UNPKG

@zxcvbn-ts/language-it

Version:

The Italian language package for zxcvbn-ts

36 lines (24 loc) 694 B
# @zxcvbn-ts/language-it The Italian dictionary and language package for zxcvbn-ts ## Install #### npm: `npm install @zxcvbn-ts/language-it --save` #### yarn: `yarn add @zxcvbn-ts/language-it` ## Setup ```js import { zxcvbn, zxcvbnOptions } from '@zxcvbn-ts/core' import * as zxcvbnCommonPackage from '@zxcvbn-ts/language-common' import * as zxcvbnItPackage from '@zxcvbn-ts/language-it' const password = 'somePassword' const options = { translations: zxcvbnItPackage.translations, graphs: zxcvbnCommonPackage.adjacencyGraphs, dictionary: { ...zxcvbnCommonPackage.dictionary, ...zxcvbnItPackage.dictionary, }, } zxcvbnOptions.setOptions(options) zxcvbn(password) ```