Skip to content

Instantly share code, notes, and snippets.

@sergueyarellano
Created May 28, 2021 17:08
Show Gist options
  • Save sergueyarellano/9399a9eaba1d66a99d8e555c83a8e33d to your computer and use it in GitHub Desktop.
Save sergueyarellano/9399a9eaba1d66a99d8e555c83a8e33d to your computer and use it in GitHub Desktop.
function createResult (payload) {
const newPayload = cloneDeep(payload)
const data = get(newPayload, 'data.mappedResponse')
const result = {
data,
metadata: {}
}
return set(newPayload, 'result', result)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment