8 lines
187 B
JavaScript
8 lines
187 B
JavaScript
window.post = function (url, data) {
|
|
return fetch(url, {
|
|
method: 'POST',
|
|
headers: { 'Content-Type': 'application/json' },
|
|
body: JSON.stringify(data),
|
|
})
|
|
}
|