mirror of
https://github.com/tc39/test262.git
synced 2025-05-29 11:10:32 +02:00
``` $ python tools/lint/lint.py --whitelist lint.whitelist harness/*.js Linting 25 files. Linting complete. 0 errors found. ``` - Renames detachArrayBuffer-$262.detachArrayBuffer.js -> detachArrayBuffer-host-detachArrayBuffer.js (previous naming prevents command-click from terminal) Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
16 lines
467 B
JavaScript
16 lines
467 B
JavaScript
// Copyright (C) 2009 the Sputnik authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
/*---
|
|
description: |
|
|
Collection of date-centric values
|
|
---*/
|
|
|
|
var date_1899_end = -2208988800001;
|
|
var date_1900_start = -2208988800000;
|
|
var date_1969_end = -1;
|
|
var date_1970_start = 0;
|
|
var date_1999_end = 946684799999;
|
|
var date_2000_start = 946684800000;
|
|
var date_2099_end = 4102444799999;
|
|
var date_2100_start = 4102444800000;
|