decentralized-internet
Version:
An NPM library of programs to create decentralized web and distributed computing projects
12 lines • 359 B
JSON
{
"_id": "_design/searchUser",
"language": "javascript",
"views": {
"email": {
"map": "function(doc) {\n\tif(doc.type === \"user\"){\n\t\temit(doc.email, doc.name);\n\t}\n}"
},
"name": {
"map": "function(doc) {\n\tif(doc.type === \"user\"){\n\t\temit(doc.name, doc.email);\n\t}\n}"
}
}
}