Created
March 24, 2019 15:05
-
-
Save mdmoin7/83f49daf0afc2ad3ad1867a4b1eac32e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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