source: trip-planner-front/node_modules/core-js/internals/host-report-errors.js@ 8d391a1

Last change on this file since 8d391a1 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 223 bytes
Line 
1var global = require('../internals/global');
2
3module.exports = function (a, b) {
4 var console = global.console;
5 if (console && console.error) {
6 arguments.length === 1 ? console.error(a) : console.error(a, b);
7 }
8};
Note: See TracBrowser for help on using the repository browser.