10 lines
287 B
JavaScript
10 lines
287 B
JavaScript
|
|
UI.registerHelper('objectToPairs', function(object) {
|
||
|
|
// http://stackoverflow.com/questions/30234732/how-to-print-key-and-values-in-meteor-template
|
||
|
|
return _.map(object, function(value, key) {
|
||
|
|
return {
|
||
|
|
key: key,
|
||
|
|
value: value
|
||
|
|
};
|
||
|
|
});
|
||
|
|
});
|