Sign in
◑
Theme
chromium
/
external
/
github.com
/
v8
/
node
/
refs/heads/main
/
.
/
test
/
fixtures
/
cjs-module-wrap.js
blob: 4a3114c5f1e1e9962408ad9732891bc87afe086d [
file
] [
edit
]
'use strict'
;
const
assert
=
require
(
'assert'
);
const
m
=
require
(
'module'
);
global
.
mwc
=
0
;
m
.
wrapper
[
0
]
+=
'global.mwc = (global.mwc || 0 ) + 1;'
;
require
(
'./not-main-module.js'
);
assert
.
strictEqual
(
mwc
,
1
);
delete
global
.
mwc
;