[Migration] remove unused imports
[mygpo.git] / couchdb / general / _design / episodes / views / by_podcast_current / map.js
blobdf9bc5d27daa505d9ea9fe0289d7fc89d7e6f957
1 function(doc)
3     if(doc.doc_type == "Episode")
4     {
5         if(!doc.outdated)
6         {
7             emit(doc.podcast, null);
8         }
9     }