1.5.0 • Published 5 years ago
combo-finder v1.5.0
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)