blob: 45cf4d0797f7ab24bbd29cca75c71ea4e0684d43 [file]
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
function write(args)
{
WScript.Echo(args);
}
var result;
try
{
result = (String.fromCharCode(11) == '\v');
} catch (ex)
{
result = "Exception";
}
write(result);
try
{
eval("var v\u0061r = false;")
}
catch(ex)
{
WScript.Echo(ex.message);
}