breakpointhook.js 294 B

12345678910
  1. module.exports = function() {
  2. return true;
  3. };
  4. /**
  5. * The reason this file exists is so that we can set a breakpoint via
  6. * script name, and then control when that breakpoint is set in
  7. * our library code by importing and calling this function. The
  8. * breakpoint will always be on line 2.
  9. */