(id)
| 6704 | } |
| 6705 | |
| 6706 | function encodeDocId(id) { |
| 6707 | if (/^_design/.test(id)) { |
| 6708 | return '_design/' + encodeURIComponent(id.slice(8)); |
| 6709 | } |
| 6710 | if (id.startsWith('_local/')) { |
| 6711 | return '_local/' + encodeURIComponent(id.slice(7)); |
| 6712 | } |
| 6713 | return encodeURIComponent(id); |
| 6714 | } |
| 6715 | |
| 6716 | function preprocessAttachments$1(doc) { |
| 6717 | if (!doc._attachments || !Object.keys(doc._attachments)) { |