MCPcopy Index your code
hub / github.com/plotly/dash / GET

Function GET

dash/dash-renderer/src/actions/api.js:10–18  ·  view source on GitHub ↗
(path, fetchConfig, _body, config)

Source from the content-addressed store, hash-verified

8const logWarningOnce = once(console.warn);
9
10function GET(path, fetchConfig, _body, config) {
11 return fetch(
12 path,
13 mergeDeepRight(fetchConfig, {
14 method: 'GET',
15 headers: getCSRFHeader(config)
16 })
17 );
18}
19
20function POST(path, fetchConfig, body = {}, config) {
21 return fetch(

Callers

nothing calls this directly

Calls 1

getCSRFHeaderFunction · 0.90

Tested by

no test coverage detected