mirror of https://github.com/svaarala/duktape.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
321 B
17 lines
321 B
/*---
|
|
{
|
|
"nonstandard": true
|
|
}
|
|
---*/
|
|
|
|
/*===
|
|
Invalid Date
|
|
===*/
|
|
|
|
/* The required value was not specified in E5 or E5.1; E6 draft
|
|
* indicates "Invalid Date" is what is required, and V8 agrees:
|
|
*
|
|
* http://people.mozilla.org/~jorendorff/es6-draft.html#sec-D
|
|
*/
|
|
|
|
print(new Date(Number.POSITIVE_INFINITY).toString());
|
|
|