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
| for(var i = 1234567; i <= 9876543; i++) { | |
| fits_descrip(i, function(mid) { | |
| if(mid) { | |
| console.log("Number: " + i + | |
| " middle number: " + mid); | |
| process.exit(0); | |
| } | |
| }); | |
| } |
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
| /** | |
| * Query Redis for emails still needing to be parsed | |
| * Should return error if no items exist | |
| * @param user_name | |
| * @param cb - Callback(err, |
NewerOlder