Reputation: 1413
I use Jade templates both in express app and in the browser. I need to format data before placing it in inputs.
Should I extend locals with alike both in node.js and in browser?
{ formatDate: function(date) {}, ... }
Or are there any best practices to pass helper functions (e.g. to format money, dates etc.) to jade templates?
Upvotes: 2
Views: 1241