ip-service.js 129 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 const ipApi = require('./ip-api'); async function getIsp(ip) { return ipApi.getIsp(ip); } module.exports = { getIsp };