UNPKG

@e-group/utils

Version:

eGroup team utils that share across projects.

7 lines 214 B
/** * Remove duplicate value from array. * Ref: https://stackoverflow.com/questions/9229645/remove-duplicate-values-from-js-array */ export default function unique(array) { return Array.from(new Set(array)); }