Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions test/Operators/biops.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------

function write(v) { WScript.Echo(v + ""); }
function write(v) {
v = (v + "").replace(/\(PST\)/g, "(Pacific Standard Time)")
.replace(/\(PDT\)/g, "(Pacific Daylight Time)");

WScript.Echo(v);
}

function foo() {}
var d = new Date("Thu Aug 5 05:30:00 PDT 2010");
Expand All @@ -29,7 +34,6 @@ var all = [ undefined, null,
[1,2,3], [1,2,3],
new Array(3), Array(3), new Array(1, 2, 3), Array(1),
foo, d, 1281011400000 , d.getVarDate()

];

var biops = [
Expand Down