Last active
August 20, 2017 23:10
-
-
Save Nexuist/79e1e599f01798d00c7439b409440a69 to your computer and use it in GitHub Desktop.
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
const fs = require("fs"); | |
const maybeEligible = JSON.parse(fs.readFileSync('maybe-eligible.json', 'utf8')); | |
const eligible = maybeEligible.filter((entry) => "followed_by" in entry.connections); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment