New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

pass-power

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pass-power

Module for score of password, check required cases and get common state of password

  • 1.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

pass-power

Simple tool for checks required conditions in password and sets scores power

Install

npm i pass-power

Usage

const {passScore, passAccept} = require('pass-power');

API

passScore(val, minPassLength, analysis)

This method return result of validation compliance with input conditions

val - Type string

minPassLength - Type number

Minimal password length

analysis - Type array

In current moment available more common cases:

  • hasUppercase
  • hasLowercase
  • hasDigits
  • hasSpecials
passScore('987654321Qq#', 8, ['hasUppercase', 'hasLowercase', 'hasDigits', 'hasSpecials'])
passAccept(resultObject)

Gets result of method passScore() and return common state of validation (true/false)

resultObject - Type object

passAccept(passScore('12345', 5, ['hasDigits']))

License

ISC©

Keywords

FAQs

Package last updated on 03 Mar 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc