portainer/app/kubernetes/rest/response/transform.js

8 lines
148 B
JavaScript

// Returns the raw response without JSON parsing
export function rawResponse(data) {
const response = {
data: data,
};
return response;
}