8 lines
148 B
JavaScript
8 lines
148 B
JavaScript
// Returns the raw response without JSON parsing
|
|
export function rawResponse(data) {
|
|
const response = {
|
|
data: data,
|
|
};
|
|
return response;
|
|
}
|