arjunmehta / node-georedis

Super fast geo queries.
MIT License
192 stars 33 forks source link

How to use async/await with node-georedis? #39

Open sinevitch opened 3 years ago

sinevitch commented 3 years ago

let result = await store.nearby({ latitude: lat, longitude: lng }, 30);

satya9500 commented 3 years ago

You can use util.promisify to wrap it in a promise and then use await.