- Consolidated duplicate UndoManagers to single instance - Fixed connection promise to only resolve on 'connected' status - Fixed WebSocketProvider import (WebsocketProvider) - Added proper doc.destroy() cleanup - Renamed isPresenceInitialized property to avoid conflict Co-Authored-By: Paperclip <noreply@paperclip.ing>
@zxcvbn-ts/language-common
The common dictionary and language package for zxcvbn-ts
Install
npm:
npm install @zxcvbn-ts/language-common --save
yarn:
yarn add @zxcvbn-ts/language-common
Setup
import { zxcvbn, zxcvbnOptions } from '@zxcvbn-ts/core'
import * as zxcvbnCommonPackage from '@zxcvbn-ts/language-common'
const password = 'somePassword'
const options = {
...zxcvbnCommonPackage,
}
zxcvbnOptions.setOptions(options)
zxcvbn(password)