mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
fdc65d9769
PR-URL: https://github.com/nodejs/node/pull/49500 Fixes: https://github.com/nodejs/node/issues/49497 Reviewed-By: Stephen Belanger <admin@stephenbelanger.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Jacob Smith <jacob@frende.me>
7 lines
86 B
JavaScript
7 lines
86 B
JavaScript
'use strict';
|
|
|
|
global.counter ??= 0;
|
|
global.counter++;
|
|
|
|
require('./recursive-b.cjs');
|