Skip to content

Instantly share code, notes, and snippets.

@mdmoin7
Created March 24, 2019 15:05
Show Gist options
  • Save mdmoin7/83f49daf0afc2ad3ad1867a4b1eac32e to your computer and use it in GitHub Desktop.
Save mdmoin7/83f49daf0afc2ad3ad1867a4b1eac32e to your computer and use it in GitHub Desktop.
const reMapAll=(custom_schema,missingKeys,data:any)=>{
const newArray=[]
for(let d of data){
newArray.push(createObject(custom_schema,missingKeys,d));
}
return newArray;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment