UNPKG

@e-group/utils

Version:

eGroup team utils that share across projects.

14 lines (12 loc) 306 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = unique; /** * Remove duplicate value from array. * Ref: https://stackoverflow.com/questions/9229645/remove-duplicate-values-from-js-array */ function unique(array) { return Array.from(new Set(array)); }