MCPcopy
hub / github.com/parse-community/parse-server-example / fillStepOutput

Function fillStepOutput

public/assets/js/script.js:25–31  ·  view source on GitHub ↗
(selector, data)

Source from the content-addressed store, hash-verified

23};
24
25const fillStepOutput = (selector, data) => {
26 const element = document.querySelector(selector);
27 if (element) {
28 element.textContent = `Output: ${data}`;
29 element.style.display = 'block';
30 }
31};
32
33const fillStepError = (selector, errorMsg) => {
34 const element = document.querySelector(selector);

Callers 3

postDataFunction · 0.85
getDataFunction · 0.85
postCloudCodeDataFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected