In couchdb i have a array field:
numbers:["79998887766","79998887755","79998887766","79998887744"]
In node.js app i want to have only unique numbers.Like this:
["79998887766","79998887755","79998887744"]
Its possible to do with couchdb view or node.js module cradle
?
Or only way get all numbers and filter array with node?