Skip to content

Commit

Permalink
s/\t/ /g
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Oct 23, 2015
1 parent d29ccaa commit 8544a68
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions es6-shim.js
Original file line number Diff line number Diff line change
Expand Up @@ -145,13 +145,13 @@
}());

var getGlobal = function () {
// the only reliable means to get the global object is
// `Function('return this')()`
// However, this causes CSP violations in Chrome apps.
// the only reliable means to get the global object is
// `Function('return this')()`
// However, this causes CSP violations in Chrome apps.
if (typeof self !== 'undefined') { return self; }
if (typeof window !== 'undefined') { return window; }
if (typeof global !== 'undefined') { return global; }
throw new Error('unable to locate global object');
throw new Error('unable to locate global object');
};

var globals = getGlobal();
Expand Down

0 comments on commit 8544a68

Please sign in to comment.