Skip to content

Instantly share code, notes, and snippets.

@gaurangrshah
Last active March 18, 2021 16:05
Show Gist options
  • Save gaurangrshah/99b73a5e999f2e39ae41454ec4ef3dde to your computer and use it in GitHub Desktop.
Save gaurangrshah/99b73a5e999f2e39ae41454ec4ef3dde to your computer and use it in GitHub Desktop.
Random helpers
function isEmpty(value){
return value === undefined ||
value === null ||
(typeof value === "object" && Object.keys(value).length === 0) ||
(typeof value === "string" && value.trim().length === 0)
}
function prettyLog (obj) {
console.log(JSON.stringify(obj, null, '\t'))
return
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment