satya164/uniq — explained in plain English
Analysis updated 2026-07-18 · repo last pushed 2017-05-10
Deduplicate a list of user-submitted emails before saving them.
Clean repeated rows out of a CSV import.
Make sure a list of IDs has no accidental doubles.
| satya164/uniq | 3rd-eden/ircb.io | a15n/a15n | |
|---|---|---|---|
| Language | JavaScript | JavaScript | JavaScript |
| Last pushed | 2017-05-10 | 2016-11-16 | 2019-04-07 |
| Maintenance | Dormant | Dormant | Dormant |
| Setup difficulty | — | easy | easy |
| Complexity | 1/5 | 2/5 | 2/5 |
| Audience | developer | developer | general |
Figures from each repo's GitHub metadata at analysis time.
Uniq is a small JavaScript utility that removes duplicate values from a list (array). Instead of manually filtering through your data to find and eliminate copies, you pass an array to this tool and it returns a clean version with only unique items kept. Think of it like cleaning up a contact list, if you've accidentally imported the same person's email address twice, uniq strips out that duplicate so you're left with one clean entry per contact. It's a straightforward, focused piece of code that solves one problem well: taking messy data with repeats and making it tidy. You'd use this whenever you're working with JavaScript and need to deduplicate data. Common scenarios include cleaning up user submissions, removing repeated items from a CSV import, or ensuring a list of IDs contains no accidental doubles. Instead of writing your own logic to check for duplicates and filter them out, you can just call this utility and let it handle the work. The project is intentionally minimal, it does one thing and does it reliably. The README doesn't go into extensive detail about configuration or advanced options, suggesting this is meant to be a lightweight, straightforward solution you can drop into your code and use immediately without much setup or learning curve.
A tiny JavaScript utility that removes duplicate values from an array, giving you back a clean list with only unique items.
Mainly JavaScript. The stack also includes JavaScript.
Dormant — no commits in 2+ years (last push 2017-05-10).
Mainly developer.
This repo across BitVibe Labs
Don't trust strangers blindly. Verify against the repo.