'use strict'; const handlebars = require('handlebars'); const misc = require('./misc.js'); handlebars.registerHelper('reltime', function(time) { return new handlebars.SafeString( ''); }); handlebars.registerHelper('toLowerCase', function(str) { return str.toLowerCase(); });