Skip to content

Instantly share code, notes, and snippets.

@dlegatt
dlegatt / Http.js
Created September 26, 2016 21:57 — forked from manar007/Http.js
Promises with vanilla js, helper http function
// Support: http://caniuse.com/promises
function Http () {
/**
* Helper for http calls
* @param method
* @param url
* @param data
* @returns {Promise}
*/
function makeRequest(method,url,data) {