mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-09 19:44:56 +02:00
17 lines
390 B
JavaScript
17 lines
390 B
JavaScript
/**
|
|
* react-loadable-ssr-addon
|
|
* @author Marcos Gonçalves <contact@themgoncalves.com>
|
|
* @version 1.0.1
|
|
*/
|
|
|
|
/**
|
|
* Clean array to unique values
|
|
* @method unique
|
|
* @function
|
|
* @param {array} array - Array to be inspected
|
|
* @returns {array} - Array with unique values
|
|
*/
|
|
export default function unique(array) {
|
|
return array.filter((elem, pos, arr) => arr.indexOf(elem) === pos);
|
|
}
|