Hacker News new | ask | show | jobs
by nailer 3331 days ago
I got bored over lunch and made this a node module:

https://www.npmjs.com/package/is-gmail-account-valid

    const isGmailAccountValid = require('is-gmail-account-valid')

    isGmailAccountValid('some.username', function(err, result){
        console.log(err, result)
    })