I have a collection in Meteor that has an imported csv file with a Zip Code field. The problem is when I print out a document from a query, it will print a zip like 04191 to 4191.
....
{{#each Query}}
<p>{{Zip}</p>
{{/each}}
....
I'd need something like:
....
{{#each Query}}
<p>{{Zip.toString()}</p>
{{/each}}
....