blob: 47a9bbb1147e2558d41f9892a7e1855625c8bc33 [file]
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
var re = /^on([A-Z])/;
var inputs = ["onClick"];
var result ;
for( var i = 0; i < inputs.length; i++) {
result = re.exec(inputs[i]);
}
WScript.Echo(result.toString());