mirror of https://github.com/nodejs/node.git
25 lines
586 B
JavaScript
25 lines
586 B
JavaScript
// Flags: --experimental-modules
|
|
/* eslint-disable required-modules */
|
|
|
|
if (typeof arguments !== 'undefined') {
|
|
throw new Error('not an ESM');
|
|
}
|
|
if (typeof this !== 'undefined') {
|
|
throw new Error('not an ESM');
|
|
}
|
|
if (typeof exports !== 'undefined') {
|
|
throw new Error('not an ESM');
|
|
}
|
|
if (typeof require !== 'undefined') {
|
|
throw new Error('not an ESM');
|
|
}
|
|
if (typeof module !== 'undefined') {
|
|
throw new Error('not an ESM');
|
|
}
|
|
if (typeof __filename !== 'undefined') {
|
|
throw new Error('not an ESM');
|
|
}
|
|
if (typeof __dirname !== 'undefined') {
|
|
throw new Error('not an ESM');
|
|
}
|