node-georedis
node-georedis copied to clipboard
How to use async/await with node-georedis?
let result = await store.nearby({ latitude: lat, longitude: lng }, 30);
You can use util.promisify to wrap it in a promise and then use await.