UNPKG

9gag

Version:

Download 9GAG posts and comments

14 lines (9 loc) 200 B
const fetch = require('node-fetch'); class HttpClient { async get(url) { const res = await fetch(url); const data = await res.json(); return data; } } module.exports = HttpClient;