blob: 978d8829e2deabedd84f66c037b54449ee4294f8 [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.
//-------------------------------------------------------------------------------------------------------
var result;
'x'.replace(/x/, function() { result = this; });
WScript.Echo(result === this);