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
| // returns all the prime factors of a positive integer | |
| function prime_factors(n) { | |
| var factors = []; | |
| var div = 2; | |
| while (n > 1) { | |
| while (n % div == 0) { | |
| factors.push(div); | |
| n /= div; | |
| } | |
| div++; |
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
| diff --git a/emailserver.js b/emailserver.js | |
| index e40f738..9a063c2 100755 | |
| --- a/emailserver.js | |
| +++ b/emailserver.js | |
| @@ -24,6 +24,32 @@ function logError(err) { | |
| log("ERROR (oh noes!): " + err); | |
| } | |
| +function mailSummary(mail) { | |
| + const deliveryTime = |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
OlderNewer