No, there is no built in method in node.js, however there are plenty of ways to do this in javascript. All you have to do is look around, as this has already been answered.
uniqueArray = myArray.filter(function(elem, pos) {
return myArray.indexOf(elem) == pos;
})