📄 host-report-errors.js
/home/palash/git/site/node_modules/core-js-pure/internals/host-report-errors.js
Language: js • Lines: 7
'use strict';
module.exports = function (a, b) {
  try {
    // eslint-disable-next-line no-console -- safe
    arguments.length === 1 ? console.error(a) : console.error(a, b);
  } catch (error) { /* empty */ }
};