We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 554f52e commit 0e804ecCopy full SHA for 0e804ec
packages/stencil-library/src/utilities/stringUtilities.ts
@@ -15,7 +15,7 @@ export function getReadableFileSizeString (fileSizeInBytes: number) : string {
15
16
/** Takes an html encoded string and converts it to actual decoded html. */
17
export function decodeHtml(html: string) : string {
18
- if (html != undefined){
+ if (html == undefined){
19
return '';
20
}
21
0 commit comments