Guest User

Untitled

a guest
Jul 12th, 2018
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. const dns = require('dns');
  2.  
  3. function onConnected(callback){
  4. dns.resolve('www.google.com', function(err) {
  5. if (!err) callback();
  6. });
  7. }
Add Comment
Please, Sign In to add comment