In the file-"d3.js", Method-"format.parse" and line-if (i != string.length) return null;
Year is supported only till "9999"(string.length=14) if year "10000" is passed then it is returning as null because length will be increased by 1(string.length=15).
Is it a technical restriction or is there any other way forward to handle such scenarios ?
In the file-"d3.js", Method-"format.parse" and line-if (i != string.length) return null;
Year is supported only till "9999"(string.length=14) if year "10000" is passed then it is returning as null because length will be increased by 1(string.length=15).
Is it a technical restriction or is there any other way forward to handle such scenarios ?