UNPKG

svcorelib

Version:

Core library used in the projects of Sv443 and the Sv443 Network. Contains tons of miscellaneous QoL features.

7 lines (5 loc) 138 B
function removeDuplicates(array) { return array.filter((a, b) => array.indexOf(a) === b); } module.exports = removeDuplicates;