Skip to content

Instantly share code, notes, and snippets.

@guiseek
Created April 7, 2020 07:33
Show Gist options
  • Save guiseek/13a69601f542b27723182429c086eba5 to your computer and use it in GitHub Desktop.
Save guiseek/13a69601f542b27723182429c086eba5 to your computer and use it in GitHub Desktop.
export function orZero(data) {
return !!data
&& typeof data === 'number'
&& !isNaN(data) ? data : 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment