mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
586 B
25 lines
586 B
8 years ago
|
// 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');
|
||
|
}
|