blob: 9f818e3593ff110473ef2f73d2cf96d71cc27f6a [file] [log] [blame]
//-------------------------------------------------------------------------------------------------------
// 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);
}