UNPKG

fraud-check

Version:

Fraud Checker

14 lines (11 loc) 253 B
const fraudCheck = require("../app"); const testMax = async () => { for (let i = 0; i < 60; i++) { const res = await fraudCheck.verify({ ip: "105.155.96.43", countryArr: ["MA"], }); console.log({ i, res }); } }; testMax();