Is there a way to transform text to uppercase?
e.g.
{
text: 'Hello World',
uppercase: true
}
HELLO WORLD
Well, as soon as I posted this I realized I could just use .toUpperCase() to transform the string before passing it to pdfmake.
Is text-transform: uppercase/lowercase an option with PDFMake? I've tried a few different methods on the PDFMake playground, but nothing worked. It would be a nice feature!
Any update if PDFMake accepts text-transform:uppercase/lowercase?
Most helpful comment
Well, as soon as I posted this I realized I could just use
.toUpperCase()to transform the string before passing it topdfmake.