tc39 / proposal-global

ECMAScript Proposal, specs, and reference implementation for `global`
http://tc39.github.io/proposal-global/
MIT License
349 stars 18 forks source link

Typo? #7

Closed IAmAnubhavSaini closed 8 years ago

IAmAnubhavSaini commented 8 years ago

})(typeof window !== "undefined" in README

ljharb commented 8 years ago

Nope - if you look a few lines down, there's a matching closing paren.

IAmAnubhavSaini commented 8 years ago
// If we're in a browser, the global namespace is named 'window'. If we're
// in node, it's named 'global'. If we're in a shell, 'this' might work.
})
(typeof window !== "undefined" ... );

Check third line.