Apply new format to snippets and template
This commit is contained in:
@ -5,11 +5,11 @@ tags: browser,url,intermediate
|
||||
|
||||
Makes a `PUT` request to the passed URL.
|
||||
|
||||
Use `XMLHttpRequest` web api to make a `put` request to the given `url`.
|
||||
Set the value of an `HTTP` request header with `setRequestHeader` method.
|
||||
Handle the `onload` event, by running the provided `callback` function.
|
||||
Handle the `onerror` event, by running the provided `err` function.
|
||||
Omit the last argument, `err` to log the request to the console's error stream by default.
|
||||
- Use `XMLHttpRequest` web api to make a `put` request to the given `url`.
|
||||
- Set the value of an `HTTP` request header with `setRequestHeader` method.
|
||||
- Handle the `onload` event, by running the provided `callback` function.
|
||||
- Handle the `onerror` event, by running the provided `err` function.
|
||||
- Omit the last argument, `err` to log the request to the console's error stream by default.
|
||||
|
||||
```js
|
||||
const httpPut = (url, data, callback, err = console.error) => {
|
||||
|
||||
Reference in New Issue
Block a user