Sign in
cobalt
/
cobalt
/
07081467c3d00b04a6a1162e0566a5a8b9cfe2d5
/
.
/
third_party
/
devtools
/
node_modules
/
karma
/
lib
/
init
/
log-queue.js
blob: feeb29f43a743112986370444385646e89347804 [
file
] [
log
] [
blame
]
'use strict'
const
logQueue
=
[]
function
printLogQueue
()
{
logQueue
.
forEach
((
log
)
=>
log
())
logQueue
.
length
=
0
}
function
push
(
log
)
{
logQueue
.
push
(
log
)
}
module
.
exports
=
{
printLogQueue
,
push
}