unique(array) function - bug ticket 1747

unique(array) function - bug ticket 1747

Thought I'd post here in case it was missed on the main list.
This is from the example at <a href="http://docs.jquery.com/Utilities/jQuery.unique">http://docs.jquery.com/Utilities/jQuery.unique</a>
$.unique([0,1,1,2,2,3])
expected: [0,1,2,3]
actual: [0,1,1,2,2,3]
Created ticket, attached patch with unit tests and possible fix:
<a href="http://dev.jquery.com/ticket/1747">http://dev.jquery.com/ticket/1747</a>
- Richard