marcog83/RoboJS

View on GitHub
src/internal/_root.js

Summary

Maintainability
A
0 mins
Test Coverage
const _root = (typeof self === "object" && self.self === self && self) ||
    (typeof global === "object" && global.global === global && global) || window || self;

export default _root;