This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var GithubApi = require("github"); | |
// you can install the required module using `npm install github` | |
var user = "myUsername"; | |
var password = "myPassword"; | |
function filterRepos(item) { | |
var lowerName = item.full_name.toLowerCase(); | |
return item.owner.login !== 'berkeley-stat243' && |