mirror of
https://github.com/Kong/insomnia.git
synced 2026-06-18 04:53:50 -04:00
10 lines
199 B
JavaScript
Executable File
10 lines
199 B
JavaScript
Executable File
const fetchOptions = {
|
|
mode: 'cors',
|
|
method: 'PROPFIND',
|
|
headers: {},
|
|
};
|
|
|
|
fetch('http://mockbin.com/har', fetchOptions)
|
|
.then(response => response.json())
|
|
.then(data => console.log(data));
|