Skip to content

Commit

Permalink
fix #294
Browse files Browse the repository at this point in the history
  • Loading branch information
nilproject committed Aug 31, 2023
1 parent 66930da commit 6a6ec35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion NiL.JS/BaseLibrary/Number.cs
Expand Up @@ -105,7 +105,7 @@ public Number(string value)
ref i,
out d,
0,
ParseNumberOptions.Default | (Context.CurrentContext._strict ? ParseNumberOptions.RaiseIfOctal : 0))
ParseNumberOptions.Default & ~ParseNumberOptions.ProcessOctalLiteralsOldSyntax)
&& i == value.Length)
{
_dValue = d;
Expand Down

0 comments on commit 6a6ec35

Please sign in to comment.