mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-27 21:06:49 +00:00
9 lines
201 B
CoffeeScript
9 lines
201 B
CoffeeScript
Darkswarm.factory 'User', (user)->
|
|
# This is for the current user
|
|
if user and !$.isEmptyObject(user)
|
|
new class User
|
|
constructor: ->
|
|
@[k] = v for k, v of user
|
|
else
|
|
undefined
|