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.
19 lines
317 B
19 lines
317 B
12 years ago
|
/*---
|
||
|
{
|
||
|
"custom": true
|
||
|
}
|
||
|
---*/
|
||
|
|
||
12 years ago
|
/*===
|
||
|
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());
|
||
|
|