snapchat://oauth2/authspotify-action://authorize| { | |
| "listings": [ | |
| { | |
| "address": "412 Oak Hollow Dr, Austin, TX 78745", | |
| "price": 549000, | |
| "beds": 3, | |
| "baths": 2, | |
| "summary": "Renovated single-story with a big back porch.", | |
| "photos": [ | |
| "https://images.unsplash.com/photo-1568605114967-8130f3a36994?w=1600&q=80&auto=format&fit=crop", |
| function(promises, { seq, progress } = {}) { | |
| const results = new Array(promises.length).fill(undefined) | |
| let count = 0 | |
| return new Promise(async (resolve, reject) => { | |
| async function runPromise(promise, i) { | |
| results[i] = await promise | |
| count += 1 |