Skip to content

Instantly share code, notes, and snippets.

@EdwardIII
Forked from oluyoung/onlyPromise.js
Created November 2, 2020 17:03
Show Gist options
  • Save EdwardIII/327a90a026b9ccd34e58866f4cc57957 to your computer and use it in GitHub Desktop.
Save EdwardIII/327a90a026b9ccd34e58866f4cc57957 to your computer and use it in GitHub Desktop.
public getAvailability(apiToken) {
return new Promise((resolve, reject) => {
axios.get('api/connect/hotels/id/availability')
.then((response) => resolve(response.data))
.catch(error => reject(new HttpRequestError(error)));
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment