A simple script to get pinned repos of a github user because github's rest api doesn't allow it.
getRepos.ts/js
file exports getPinnedRepos
function.
function getPinnedRepos(params)
@params
username: string -> Username of the github user.
@returns
info: {owner: string, repo: string, url: string} -> Pinned repositories.
index.ts/js
is only for demonstration purpose.