Node.js strict mode enabled?
A quick test, this relies on the fact that this
will not exist and point to the global scope when running in strict mode.
console.log('strict:',(function() { return (this === undefined); })());
Strict mode is enabled by default within Node.js ES module enabled packages: