Add a script that filters redundant registrations from the json db

This commit is contained in:
Oliver Jowett 2016-09-10 15:54:59 +01:00
parent e5912c322f
commit d1a33f4655
3 changed files with 51 additions and 3 deletions
public_html

View file

@ -308,3 +308,8 @@ registration_from_hexid = (function () {
return lookup;
})();
// make nodejs happy:
if (module) {
module.exports = registration_from_hexid;
}