mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
14 lines
404 B
CoffeeScript
14 lines
404 B
CoffeeScript
|
async = require "async"
|
||
|
|
||
|
module.exports = Utils =
|
||
|
getClientAttributes: (client, keys, callback = (error, attributes) ->) ->
|
||
|
attributes = {}
|
||
|
jobs = keys.map (key) ->
|
||
|
(callback) ->
|
||
|
client.get key, (error, value) ->
|
||
|
return callback(error) if error?
|
||
|
attributes[key] = value
|
||
|
callback()
|
||
|
async.series jobs, (error) ->
|
||
|
return callback(error) if error?
|
||
|
callback null, attributes
|