browser.js 206 B

12345678910
  1. /*
  2. * this is what browserify will use if you use browserify on your tests.
  3. * no need to bootstrap a DOM environment in a browser.
  4. */
  5. module.exports = function () {
  6. return noop
  7. }
  8. function noop () { }