mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-27 21:06:49 +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
|