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.

8 lines
257 B

  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; })();