Skip to content

Instantly share code, notes, and snippets.

View guysmoilov's full-sized avatar
🐶

Guy Smoilovsky guysmoilov

🐶
View GitHub Profile
@guysmoilov
guysmoilov / documentSpreader.html
Created March 11, 2015 22:15
Meteor template that can recursively display any document's structure.
<template name="fieldSpreader">
{{#if isArray}}
{{> arraySpreader}}
{{else}}
{{#if isObject}}
{{> objectSpreader}}
{{else}}
{{!-- This is just a value type --}}
{{ this}}
{{/if}}