Skip to content

Commit

Permalink
chore: Release v0.6.21
Browse files Browse the repository at this point in the history
  • Loading branch information
mhevery committed Sep 11, 2016
1 parent 0a7a155 commit de318ce
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion dist/fake-async-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -235,4 +235,4 @@
// Export the class so that new instances can be created with proper
// constructor params.
Zone['FakeAsyncTestZoneSpec'] = FakeAsyncTestZoneSpec;
})(typeof window !== 'undefined' ? window : global);
})(typeof window === 'object' && window || typeof self === 'object' && self || global);
2 changes: 1 addition & 1 deletion dist/wtf.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,4 +105,4 @@
return name;
}
Zone['wtfZoneSpec'] = !wtfEnabled ? null : new WtfZoneSpec();
})(typeof window == 'undefined' ? global : window);
})(typeof window === 'object' && window || typeof self === 'object' && self || global);
2 changes: 1 addition & 1 deletion dist/wtf.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions dist/zone-node.js
Original file line number Diff line number Diff line change
Expand Up @@ -564,7 +564,7 @@ var Zone$1 = (function (global) {
// This is not part of public API, but it is usefull for tests, so we expose it.
Promise[Zone.__symbol__('uncaughtPromiseErrors')] = _uncaughtPromiseErrors;
return global.Zone = Zone;
})(typeof window === 'undefined' ? global : window);
})(typeof window === 'object' && window || typeof self === 'object' && self || global);

/**
* Suppress closure compiler errors about unknown 'process' variable
Expand Down Expand Up @@ -665,7 +665,7 @@ function patchTimer(window, setName, cancelName, nameSuffix) {

var set = 'set';
var clear = 'clear';
var _global = typeof window === 'undefined' ? global : window;
var _global = typeof window === 'object' && window || typeof self === 'object' && self || global;
// Timers
var timers = require('timers');
patchTimer(timers, set, clear, 'Timeout');
Expand Down
6 changes: 3 additions & 3 deletions dist/zone.js
Original file line number Diff line number Diff line change
Expand Up @@ -564,15 +564,15 @@ var Zone$1 = (function (global) {
// This is not part of public API, but it is usefull for tests, so we expose it.
Promise[Zone.__symbol__('uncaughtPromiseErrors')] = _uncaughtPromiseErrors;
return global.Zone = Zone;
})(typeof window === 'undefined' ? global : window);
})(typeof window === 'object' && window || typeof self === 'object' && self || global);

/**
* Suppress closure compiler errors about unknown 'process' variable
* @fileoverview
* @suppress {undefinedVars}
*/
var zoneSymbol = Zone['__symbol__'];
var _global$1 = typeof window == 'undefined' ? global : window;
var _global$1 = typeof window === 'object' && window || typeof self === 'object' && self || global;
function bindArguments(args, source) {
for (var i = args.length - 1; i >= 0; i--) {
if (typeof args[i] === 'function') {
Expand Down Expand Up @@ -1194,7 +1194,7 @@ function patchTimer(window, setName, cancelName, nameSuffix) {
var set = 'set';
var clear = 'clear';
var blockingMethods = ['alert', 'prompt', 'confirm'];
var _global = typeof window == 'undefined' ? global : window;
var _global = typeof window === 'object' && window || typeof self === 'object' && self || global;
patchTimer(_global, set, clear, 'Timeout');
patchTimer(_global, set, clear, 'Interval');
patchTimer(_global, set, clear, 'Immediate');
Expand Down
2 changes: 1 addition & 1 deletion dist/zone.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "zone.js",
"version": "0.6.20",
"version": "0.6.21",
"description": "Zones for JavaScript",
"main": "dist/zone-node.js",
"browser": "dist/zone.js",
Expand Down

0 comments on commit de318ce

Please sign in to comment.