combo-finder
TypeScript icon, indicating that this package has built-in type declarations

1.5.0 • Public • Published

combo-finder

Find combo in a list of combo

Documentation

function findCombo(comboList: string, checkDupe: boolean = false): ComboResult

  • comboList: the list of combo in a format of username:password

Return: return an object containg the number of combo found and the combo found. here's a example of what it return

{
  NumberOfCombo: 1,
  ComboArray: [
    {
      Username: "username@gmail.org",
      Password: "password"
    }
  ]
}

Example:

const { findCombo } = require("combo-finder")

const result = findCombo("username@gmail.org:password");
console.log(`I found ${result.NumberOfCombo}! Here are the combo found:`);
console.log(result.ComboArray)

Readme

Keywords

none

Package Sidebar

Install

npm i combo-finder

Weekly Downloads

1

Version

1.5.0

License

ISC

Unpacked Size

9.21 kB

Total Files

8

Last publish

Collaborators

  • vinidalvino