Skip to content

Instantly share code, notes, and snippets.

@infinnie
Created May 8, 2018 03:01
Show Gist options
  • Save infinnie/dfc631286df334514e38b65dba216a75 to your computer and use it in GitHub Desktop.
Save infinnie/dfc631286df334514e38b65dba216a75 to your computer and use it in GitHub Desktop.
DNS lookup
module.exports.handler = function(event, context, callback) {
require("dns").lookup("gist.github.com",function(...x){
callback(...x);
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment