ahmadnassri/httpsnippet

View on GitHub
src/targets/javascript/jquery/fixtures/custom-method.js

Summary

Maintainability
A
0 mins
Test Coverage
const settings = {
  async: true,
  crossDomain: true,
  url: 'http://mockbin.com/har',
  method: 'PROPFIND',
  headers: {}
};

$.ajax(settings).done(function (response) {
  console.log(response);
});