Sha256: dd27f6afa6419d90c233eeed1ea0821743f0970f8d9df0c2d35cff3eaea2c861

Contents?: true

Size: 226 Bytes

Versions: 6

Compression:

Stored size: 226 Bytes

Contents

function(doc) {
  if (!doc.date) { return; }
  if (doc.path) {
    emit([doc.path, 'path', doc.date], null);
  }
  if (doc.tags) {
    for (var tag in doc.tags) {
      emit([doc.tags[tag], 'tag', doc.date], null);
    }
  }
}

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
mattly-exegesis-0.2.1 test/fixtures/designs/things/views/for_path/map.js
mattly-exegesis-0.2.2 test/fixtures/designs/things/views/for_path/map.js
mattly-exegesis-0.2.3 test/fixtures/designs/things/views/for_path/map.js
mattly-exegesis-0.2.5 test/fixtures/designs/things/views/for_path/map.js
mattly-exegesis-0.2.6 test/fixtures/designs/things/views/for_path/map.js
mattly-exegesis-0.2.8 test/fixtures/designs/things/views/for_path/map.js