mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
5 lines
117 B
CoffeeScript
5 lines
117 B
CoffeeScript
Array::unique = ->
|
|
output = {}
|
|
output[@[key]] = @[key] for key in [0...@length]
|
|
value for key, value of output
|