mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 21:19:50 +01:00
464d1c1558
Fixes: https://github.com/nodejs/node/issues/43740 PR-URL: https://github.com/nodejs/node/pull/43741 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
27 lines
981 B
JavaScript
27 lines
981 B
JavaScript
// We must load the CJS version here because the ESM wrapper call `hasIPv6`
|
|
// which compiles a RegEx.
|
|
// eslint-disable-next-line node-core/require-common-first
|
|
import '../common/index.js';
|
|
import assert from 'node:assert';
|
|
|
|
assert.strictEqual(RegExp.$_, '');
|
|
assert.strictEqual(RegExp.$0, undefined);
|
|
assert.strictEqual(RegExp.$1, '');
|
|
assert.strictEqual(RegExp.$2, '');
|
|
assert.strictEqual(RegExp.$3, '');
|
|
assert.strictEqual(RegExp.$4, '');
|
|
assert.strictEqual(RegExp.$5, '');
|
|
assert.strictEqual(RegExp.$6, '');
|
|
assert.strictEqual(RegExp.$7, '');
|
|
assert.strictEqual(RegExp.$8, '');
|
|
assert.strictEqual(RegExp.$9, '');
|
|
assert.strictEqual(RegExp.input, '');
|
|
assert.strictEqual(RegExp.lastMatch, '');
|
|
assert.strictEqual(RegExp.lastParen, '');
|
|
assert.strictEqual(RegExp.leftContext, '');
|
|
assert.strictEqual(RegExp.rightContext, '');
|
|
assert.strictEqual(RegExp['$&'], '');
|
|
assert.strictEqual(RegExp['$`'], '');
|
|
assert.strictEqual(RegExp['$+'], '');
|
|
assert.strictEqual(RegExp["$'"], '');
|