Is it normal to see invalid characters in a JS file?
Is it normal to see invalid characters in a JS file?
Hi, I am using the following links created by the download builder,
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/v/dt/jszip-2.5.0/pdfmake-0.1.18/dt-1.10.12/b-1.2.2/b-html5-1.2.2/b-print-1.2.2/cr-1.3.2/fh-3.1.2/sc-1.4.2/datatables.min.css"/>
The css file seems to be normal but I noticed that there are some invalid characters like "Žâ€€â€â€" in the js file generated.
Is this normal? I am not sure if these characters would introduce any unforeseen issues in my application.
Any insight is greatly appreciated.
Thanks,
Replies
In addition to above information this is the js file with the error.
They aren't invalid characters - they just perhaps aren't what you expected to see . They are part of the lodash that the pdfmake library includes.
They look ugly when minified, but are still perfectly valid.
Allan
Thank you!