BathHacked/energy-sparks

View on GitHub
app/javascript/transport_surveys/handlebars_helpers.js

Summary

Maintainability
A
0 mins
Test Coverage
import { nice_date, pluralise } from 'transport_surveys/helpers';

Handlebars.registerHelper('unsaved_responses', function(element, count, date, today) {
  return pluralise(element, {count: count, date: nice_date(date, today)});
});