index.js 257 B

123456789
  1. /**
  2. * Returns `this`. Execute this without a "context" (i.e. without it being
  3. * attached to an object of the left-hand side), and `this` points to the
  4. * "global" scope of the current JS execution.
  5. */
  6. module.exports = (function () { return this; })();