log.js 295 B

1234567891011
  1. "use strict";
  2. exports.__esModule = true;
  3. exports.warn = warn;
  4. // This module exists only for abstracting logging away and making testing easier
  5. // eslint-disable-next-line import/prefer-default-export
  6. function warn(...args) {
  7. // eslint-disable-next-line no-console
  8. console.warn(...args);
  9. }