Skip to content

Instantly share code, notes, and snippets.

View ericsnap's full-sized avatar

Eric Liprandi ericsnap

  • Snapfish
  • Fort Collins, CO - USA
View GitHub Profile
async function getData(x: number) {
const response = await request.get(`https://httpbin.org/get`, {
qs: { time: new Date(), id: x },
json: true
});
console.log(response.args.time);
}