UNPKG

handsontable

Version:

Handsontable is a JavaScript Data Grid available for React, Angular and Vue.

52 lines (49 loc) 1.18 kB
/* eslint-disable no-console */ /* eslint-disable no-restricted-globals */ /** * "In Internet Explorer 9 (and 8), the console object is only exposed when the developer tools are opened * for a particular tab.". * * Source: https://stackoverflow.com/a/5473193. */ import { isDefined } from "./mixed.mjs"; /** * Logs message to the console if the `console` object is exposed. * * @param {...*} args Values which will be logged. */ export function log() { if (isDefined(console)) { console.log(...arguments); } } /** * Logs warn to the console if the `console` object is exposed. * * @param {...*} args Values which will be logged. */ export function warn() { if (isDefined(console)) { console.warn(...arguments); } } /** * Logs info to the console if the `console` object is exposed. * * @param {...*} args Values which will be logged. */ export function info() { if (isDefined(console)) { console.info(...arguments); } } /** * Logs error to the console if the `console` object is exposed. * * @param {...*} args Values which will be logged. */ export function error() { if (isDefined(console)) { console.error(...arguments); } }