You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
vara1="\0";varb1="\x01";// this should be consistency with b2varc1="\01";// this should either remain as is or be "\u0001"vard1="\\0041";vara2="\0";varb2="\u0001";varc2="\01";// this should either remain "\01" or be "\u0001" (same as c1)vard2="\\0041";// This should not be altered
Actual behavior:
vara1="\0";varb1="\x01";varc1="\01";vard1="\\0041";vara2="\0";varb2="\u0001";varc2="\x001";vard2="\\x00041";// This is broken and the main concern
The behavior demonstrated in variable d2 is the primary concern as the output has been transformed into a completely different value.
TypeScript Version: 2.6+
Search Terms:
Code
Expected behavior:
Actual behavior:
The behavior demonstrated in variable
d2
is the primary concern as the output has been transformed into a completely different value.Playground Link:
Example
Related Issues:
Traced the change to this PR: #18026
angular/angular-cli#9567
The text was updated successfully, but these errors were encountered: