# combo-finder

> Filter

Latest version **1.5.0** (published 2021-04-11) · ISC license · 0 weekly downloads

## Install

```sh
npm install combo-finder
pnpm add combo-finder
yarn add combo-finder
bun add combo-finder
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.5.0 |
| Published | 2021-04-11 |
| First published | 2020-12-01 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 9 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | vinidalvino |
| Maintainers | vinidalvino |

## Links

- npm: https://www.npmjs.com/package/combo-finder
- Repository: https://github.com/ViniDalvino/combo-checker
- Homepage: https://github.com/ViniDalvino/combo-checker#readme
- Issues: https://github.com/ViniDalvino/combo-checker/issues
- npm.io page: https://npm.io/package/combo-finder

## Dependencies (1)

- [lodash.isequal](https://npm.io/package/lodash.isequal.md) ^4.5.0

## Recent versions

- 1.5.0 (latest) — 2021-04-11
- 1.0.5 — 2020-12-01
- 1.0.4 — 2020-12-01
- 1.0.3 — 2020-12-01
- 1.0.2 — 2020-12-01
- 1.0.1 — 2020-12-01
- 1.0.0 — 2020-12-01

## 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 

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

## Example:
```js
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)
```

---
_Source: https://npm.io/package/combo-finder · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
