Extends the Array.prototype to return a new array without duplicates
npm install npm-array-remove-duplicates
require('npm-array-remove-duplicates');
var a = [1, 11, 3, 3, 7, 7, 11, 51, 3];
var b = a.removeDuplicates();
console.log(b); // [ 1, 11, 3, 7, 51 ]
```