- Does order matter?
- Two modes: preserve order (keep the first occurrence of each line, drop later duplicates) or sort + dedupe (sort then remove duplicates). Preserve is more common; sort is faster on huge files.
- Is deduplication case-sensitive?
- Yes by default. Toggle 'case-insensitive' for inputs where `FOO` and `foo` should be considered equal — useful for hostname lists and email dumps.
- What about trailing whitespace?
- Toggle 'trim before compare' so lines that differ only in trailing spaces are treated as equal. The output preserves the first occurrence's whitespace.
- How large a file can it handle?
- Streaming in theory, but browser memory caps practical size around 50MB. For multi-GB log files use `sort -u` or `awk '!seen[$0]++'` at the command line.