Skip to content

Instantly share code, notes, and snippets.

@fmal
Created March 7, 2017 16:03
Show Gist options
  • Select an option

  • Save fmal/b2441d0ab4854fde503bc3709f530a2c to your computer and use it in GitHub Desktop.

Select an option

Save fmal/b2441d0ab4854fde503bc3709f530a2c to your computer and use it in GitHub Desktop.
function withDefault (value, defaultValue) {
if (value === undefined || value === null) {
return defaultValue;
}
return value;
}
// const velocity = withDefault(config.velocity, 0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment