Skip to content

Instantly share code, notes, and snippets.

@ppscvalentin
Created April 24, 2019 14:12
Show Gist options
  • Save ppscvalentin/645207d1a9be374aa6072844b54cfe9a to your computer and use it in GitHub Desktop.
Save ppscvalentin/645207d1a9be374aa6072844b54cfe9a to your computer and use it in GitHub Desktop.
Check if there is a callback passed as an argument before trying to execute
if (callback && typeof(callback) === "function") {
callback();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment