Skip to content

Instantly share code, notes, and snippets.

@wmira
Last active July 1, 2016 14:42
Show Gist options
  • Save wmira/d96dfee7e463e52eba8f38d770e65e4d to your computer and use it in GitHub Desktop.
Save wmira/d96dfee7e463e52eba8f38d770e65e4d to your computer and use it in GitHub Desktop.
//code can be null/undefined so lets fix it
export const formatOrderCode = ( code ) => {
if ( code !== null && code !== undefined ) {
return code.toUpperCase();
}
return null;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment