vlad 6f123ff03e 18.07 6 năm trước cách đây
..
index.js 6f123ff03e 18.07 6 năm trước cách đây
license 6f123ff03e 18.07 6 năm trước cách đây
package.json 6f123ff03e 18.07 6 năm trước cách đây
readme.md 6f123ff03e 18.07 6 năm trước cách đây

readme.md

github-username Build Status

Get a GitHub username from an email address

Install

$ npm install github-username

Usage

const githubUsername = require('github-username');

githubUsername('sindresorhus@gmail.com').then(username => {
	console.log(username);
	//=> 'sindresorhus'
});

API

githubUsername(email, [token])

Returns a Promise for the username.

email

Type: string

Email address for the user of whom you want the username.

token

Type: string

GitHub personal access token.

Related

License

MIT © Sindre Sorhus