| 123456789101112131415161718192021222324252627 |
- //-------------------------------------------------------------------------------------------------------
- // 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);
- }
|