Skip to content

Instantly share code, notes, and snippets.

@nkreiger
Created June 3, 2020 03:16
Show Gist options
  • Save nkreiger/5a69844c1d6843674ff181eec70672bc to your computer and use it in GitHub Desktop.
Save nkreiger/5a69844c1d6843674ff181eec70672bc to your computer and use it in GitHub Desktop.
const getList = async (key) => {
// perform specific action here
return new Promise(resolve => {
client.lrange(key, 0, -1, (err, res) => {
if (err) console.error(err);
resolve(res)
})
})
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment