File size: 333 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
export function toProfile(username) {
return `https://github.com/${username}`;
}
export function toAvatar(id) {
return `https://avatars.githubusercontent.com/u/${id}`;
}
export function toLogo(path) {
return `https://images.opencollective.com/${path}/256.png`;
}
export function toLink(path) {
return `https://${path}`;
}
|