src/notevil/helpers.js

Summary

Maintainability
A
1 hr
Test Coverage
export function getGlobal (str) {
  var ctx = (typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : this)
  return typeof str !== 'undefined' ? ctx[str] : ctx
}