Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mazkdevf/carrierdetect

With this JavaScript script you can easily find carrier of the phone number, this is using freecarrierlookup to fetch the data from.
https://github.com/mazkdevf/carrierdetect

carrier easy finder javascript phone

Last synced: about 5 hours ago
JSON representation

With this JavaScript script you can easily find carrier of the phone number, this is using freecarrierlookup to fetch the data from.

Awesome Lists containing this project

README

        

# CarrierDetect
With this JavaScript script you can easily find carrier of the phone number, this is using freecarrierlookup to fetch the data from.

## Example Code
```js
const identifier = new CarrierDetect();
let carrier = await identifier.fetchCarrier("", "");
```

will return as:
```json
{
"success": "false / true (BOOL)",
"carrier": "Carrier Name / Null",
"err": "Error Text / OR NOT"
}
```