Skip to content

Instantly share code, notes, and snippets.

@tbmreza
Created May 26, 2020 03:54
Show Gist options
  • Save tbmreza/a2b212b688d4f3fa1e7d17c487393073 to your computer and use it in GitHub Desktop.
Save tbmreza/a2b212b688d4f3fa1e7d17c487393073 to your computer and use it in GitHub Desktop.
JS utils
export function objectCopy(obj) {
if (typeof obj === "object") {
return JSON.parse(JSON.stringify(obj));
} else {
console.log(obj);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment