this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 752f1efe317601a7435cb6dd499480ba82bdc88b 17 lines 352 B view raw
1var crypto = require('crypto'); 2var fs = require('fs'); 3 4module.exports = { 5 adventCoinSecret: function(input, frontPadding) { 6 var hash = '', 7 answer = -1; 8 9 while (hash.substring(0, frontPadding.length) !== frontPadding) { 10 hash = crypto.createHash('md5').update(input + (++answer)).digest('hex'); 11 } 12 13 return answer; 14 } 15}; 16 17