unq-array
v1.0.1
Published
Return a new array that doesnot contain duplicate values
Readme
array_unique
Return a new array that doesnot contain duplicate values
Get Package
npm install unq-arrayUsage
const array_unique = require('unq-array')
var arr = [1, 2, 3, 4, 3, 4]
var new_arr = array_unique(arr) //[1, 2, 3, 4]