mirror of
https://github.com/arnaucube/raspberryGPIOhtmlserver.git
synced 2026-02-07 19:56:40 +01:00
9 lines
257 B
JavaScript
Executable File
9 lines
257 B
JavaScript
Executable File
|
|
/**
|
|
* Returns `this`. Execute this without a "context" (i.e. without it being
|
|
* attached to an object of the left-hand side), and `this` points to the
|
|
* "global" scope of the current JS execution.
|
|
*/
|
|
|
|
module.exports = (function () { return this; })();
|