UNPKG
ga-lite
Version:
latest (2.1.6)
2.1.6
2.1.5
2.1.4
2.1.3
2.1.2
2.1.1
2.1.0
2.0.5
2.0.4
2.0.1
2.0.0
1.1.4
1.1.3
1.1.2
1.1.1
Small, cacheable subset of Google Analytics JS client
ga-lite
/
src
/
get-tasks-in-command-queue.js
8 lines
(6 loc)
•
161 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
export
default
function
getTasksInCommandQueue
(
) {
if
(
typeof
window
===
'undefined'
) {
return
[] }
return
(
window
.
galite
&&
window
.
galite
.
q
) || [] }