We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10fbe7b commit 4c6ea91Copy full SHA for 4c6ea91
test/Operators/biops.js
@@ -3,7 +3,12 @@
3
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
4
//-------------------------------------------------------------------------------------------------------
5
6
-function write(v) { WScript.Echo(v + ""); }
+function write(v) {
7
+ v = (v + "").replace(/\(PST\)/g, "(Pacific Standard Time)")
8
+ .replace(/\(PDT\)/g, "(Pacific Daylight Time)");
9
+
10
+ WScript.Echo(v + "");
11
+}
12
13
function foo() {}
14
var d = new Date("Thu Aug 5 05:30:00 PDT 2010");
0 commit comments