Created
July 2, 2020 23:31
-
-
Save adambene/443775c0a2f92e6e036ae2bf6e37f8db to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function distinctPreserveOrder(items) { | |
return [...new Set(items)]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment