Sign in
apache
/
pouchdb
/
refs/heads/extract-polyfills
/
.
/
packages
/
node_modules
/
pouchdb-utils
/
src
/
guardedConsole.js
blob: c778db614e34586869377620c3f2a01d458bade0 [
file
] [
log
] [
blame
]
function
guardedConsole
(
method
)
{
/* istanbul ignore else */
if
(
console
!==
'undefined'
&&
method in console
)
{
var
args
=
Array
.
prototype
.
slice
.
call
(
arguments
,
1
);
console
[
method
].
apply
(
console
,
args
);
}
}
export
default
guardedConsole
;