MCPcopy Index your code
hub / github.com/algorithm-visualizer/algorithm-visualizer / PUT

Function PUT

src/apis/index.js:36–41  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

34};
35
36const PUT = URL => {
37 return request(URL, (mappedURL, args) => {
38 const [body, params, cancelToken] = args;
39 return axios.put(mappedURL, body, { params, cancelToken });
40 });
41};
42
43const PATCH = URL => {
44 return request(URL, (mappedURL, args) => {

Callers

nothing calls this directly

Calls 1

requestFunction · 0.85

Tested by

no test coverage detected