Skip to content

Instantly share code, notes, and snippets.

@pbzona
Created April 30, 2018 22:40
Show Gist options
  • Save pbzona/6dc409a0286c1f288c14a8d5892a3f08 to your computer and use it in GitHub Desktop.
Save pbzona/6dc409a0286c1f288c14a8d5892a3f08 to your computer and use it in GitHub Desktop.
Serverless Weather pt 6
}).catch((e) => {
// Some basic error handling
if (e.code === 'ENOTFOUND') {
callback('Unable to connect to API servers');
}
else {
callback(e.message);
}
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment