package com.github.gist.ammmze.handlebars.helpers; import com.github.jknack.handlebars.Helper; import com.github.jknack.handlebars.Options; import java.io.IOException; public class LowerHelper implements Helper { @Override public Object apply(String context, Options options) throws IOException { return context == null ? null : context.toLowerCase(); } }