combo-finder
v1.5.0
Published
Filter
Downloads
3
Readme
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: "[email protected]",
Password: "password"
}
]
}
Example:
const { findCombo } = require("combo-finder")
const result = findCombo("[email protected]:password");
console.log(`I found ${result.NumberOfCombo}! Here are the combo found:`);
console.log(result.ComboArray)