All files / src/util glob.js

100% Statements 2/2
50% Branches 3/6
100% Functions 1/1
100% Lines 2/2
1 2 3 4 5 6 7 8 9 101x 1x                
module.exports = function glob() {
  return typeof self !== 'undefined' ?
  self :
  typeof window !== 'undefined' ?
  window :
  typeof global !== 'undefined' ?
  global :
  {}
}