PHP WebShell
Текущая директория: /opt/BitGoJS/node_modules/github-username
Просмотр файла: readme.md
# github-username
> Get a GitHub username from an email address
## Install
```
$ npm install github-username
```
## Usage
```js
const githubUsername = require('github-username');
(async () => {
console.log(await githubUsername('sindresorhus@gmail.com'));
//=> 'sindresorhus'
})();
```
## API
### githubUsername(email, token?)
Get the GitHub username from an email address if the email can be found in any commits on GitHub.
Returns a `Promise<string?>` with the username.
#### email
Type: `string`
Email address for the user of whom you want the username.
#### token
Type: `string`
GitHub [personal access token](https://github.com/settings/tokens/new).
## Related
- [github-username-cli](https://github.com/sindresorhus/github-username-cli) - CLI for this module
Выполнить команду
Для локальной разработки. Не используйте в интернете!