(id)
| 6717 | } |
| 6718 | |
| 6719 | function encodeDocId(id) { |
| 6720 | if (/^_design/.test(id)) { |
| 6721 | return '_design/' + encodeURIComponent(id.slice(8)); |
| 6722 | } |
| 6723 | if (id.startsWith('_local/')) { |
| 6724 | return '_local/' + encodeURIComponent(id.slice(7)); |
| 6725 | } |
| 6726 | return encodeURIComponent(id); |
| 6727 | } |
| 6728 | |
| 6729 | function preprocessAttachments$1(doc) { |
| 6730 | if (!doc._attachments || !Object.keys(doc._attachments)) { |