for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
/**
* Handlebars helper, uppercase the str
*/
export default function lowercase(str) {
if(typeof str === 'undefined' || str === null){
return '';
} else {
return str.toUpperCase();
}