ohif-viewer/Packages/ohif-viewerbase/client/lib/helpers/capitalizeFirstLetter.js
2017-01-29 22:11:17 -02:00

17 lines
421 B
JavaScript

import { Blaze } from 'meteor/blaze';
/**
* A global Blaze UI helper to capitalizes the first letter of an input String
*
* Credit to:
*
* http://stackoverflow.com/questions/1026069/capitalize-the-first-letter-of-string-in-javascript
*/
Blaze.registerHelper('capitalizeFirstLetter', function (context) {
if (!context) {
return;
}
return context.charAt(0).toUpperCase() + context.slice(1);
});