1.5.0 • Published 3 years ago

combo-finder v1.5.0

Weekly downloads
2
License
ISC
Repository
github
Last release
3 years ago

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

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago