Skip to content
This repository was archived by the owner on Apr 20, 2018. It is now read-only.

Commit b8a9aaf

Browse files
Minor patches
1 parent 7f25f05 commit b8a9aaf

157 files changed

Lines changed: 794 additions & 11221 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Gruntfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ module.exports = function (grunt) {
55
meta: {
66
banner:
77
'/*'+
8-
'Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.\r\n' +
8+
'Copyright (c) Microsoft. All rights reserved.\r\n' +
99
'Microsoft Open Technologies. Licensed under the Apache License, Version 2.0 (the "License"); you.\r\n' +
1010
'may not use this file except in compliance with the License. You may.\r\n' +
1111
'obtain a copy of the License at.\r\n\r\n' +

dist/rx.aggregates.js

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,23 @@
1-
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
1+
// Copyright (c) Microsoft, All rights reserved. See License.txt in the project root for license information.
22

33
;(function (factory) {
44
var objectTypes = {
55
'function': true,
66
'object': true
77
};
88

9-
var
10-
freeExports = objectTypes[typeof exports] && exports && !exports.nodeType && exports,
11-
freeSelf = objectTypes[typeof self] && self.Object && self,
12-
freeWindow = objectTypes[typeof window] && window && window.Object && window,
13-
freeModule = objectTypes[typeof module] && module && !module.nodeType && module,
14-
moduleExports = freeModule && freeModule.exports === freeExports && freeExports,
15-
freeGlobal = freeExports && freeModule && typeof global == 'object' && global && global.Object && global;
9+
function checkGlobal(value) {
10+
return (value && value.Object === Object) ? value : null;
11+
}
1612

17-
var root = root = freeGlobal || ((freeWindow !== (this && this.window)) && freeWindow) || freeSelf || this;
13+
var freeExports = (objectTypes[typeof exports] && exports && !exports.nodeType) ? exports : null;
14+
var freeModule = (objectTypes[typeof module] && module && !module.nodeType) ? module : null;
15+
var freeGlobal = checkGlobal(freeExports && freeModule && typeof global === 'object' && global);
16+
var freeSelf = checkGlobal(objectTypes[typeof self] && self);
17+
var freeWindow = checkGlobal(objectTypes[typeof window] && window);
18+
var moduleExports = (freeModule && freeModule.exports === freeExports) ? freeExports : null;
19+
var thisGlobal = checkGlobal(objectTypes[typeof this] && this);
20+
var root = freeGlobal || ((freeWindow !== (thisGlobal && thisGlobal.window)) && freeWindow) || freeSelf || thisGlobal || Function('return this')();
1821

1922
// Because of build optimizers
2023
if (typeof define === 'function' && define.amd) {

dist/rx.aggregates.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/rx.aggregates.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/rx.all.compat.js

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
1+
// Copyright (c) Microsoft, All rights reserved. See License.txt in the project root for license information.
22

33
;(function (undefined) {
44

@@ -7,15 +7,18 @@
77
'object': true
88
};
99

10-
var
11-
freeExports = objectTypes[typeof exports] && exports && !exports.nodeType && exports,
12-
freeSelf = objectTypes[typeof self] && self.Object && self,
13-
freeWindow = objectTypes[typeof window] && window && window.Object && window,
14-
freeModule = objectTypes[typeof module] && module && !module.nodeType && module,
15-
moduleExports = freeModule && freeModule.exports === freeExports && freeExports,
16-
freeGlobal = freeExports && freeModule && typeof global == 'object' && global && global.Object && global;
10+
function checkGlobal(value) {
11+
return (value && value.Object === Object) ? value : null;
12+
}
1713

18-
var root = root = freeGlobal || ((freeWindow !== (this && this.window)) && freeWindow) || freeSelf || this;
14+
var freeExports = (objectTypes[typeof exports] && exports && !exports.nodeType) ? exports : null;
15+
var freeModule = (objectTypes[typeof module] && module && !module.nodeType) ? module : null;
16+
var freeGlobal = checkGlobal(freeExports && freeModule && typeof global === 'object' && global);
17+
var freeSelf = checkGlobal(objectTypes[typeof self] && self);
18+
var freeWindow = checkGlobal(objectTypes[typeof window] && window);
19+
var moduleExports = (freeModule && freeModule.exports === freeExports) ? freeExports : null;
20+
var thisGlobal = checkGlobal(objectTypes[typeof this] && this);
21+
var root = freeGlobal || ((freeWindow !== (thisGlobal && thisGlobal.window)) && freeWindow) || freeSelf || thisGlobal || Function('return this')();
1922

2023
var Rx = {
2124
internals: {},

dist/rx.all.compat.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/rx.all.compat.min.js

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/rx.all.js

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
1+
// Copyright (c) Microsoft, All rights reserved. See License.txt in the project root for license information.
22

33
;(function (undefined) {
44

@@ -7,15 +7,18 @@
77
'object': true
88
};
99

10-
var
11-
freeExports = objectTypes[typeof exports] && exports && !exports.nodeType && exports,
12-
freeSelf = objectTypes[typeof self] && self.Object && self,
13-
freeWindow = objectTypes[typeof window] && window && window.Object && window,
14-
freeModule = objectTypes[typeof module] && module && !module.nodeType && module,
15-
moduleExports = freeModule && freeModule.exports === freeExports && freeExports,
16-
freeGlobal = freeExports && freeModule && typeof global == 'object' && global && global.Object && global;
10+
function checkGlobal(value) {
11+
return (value && value.Object === Object) ? value : null;
12+
}
1713

18-
var root = root = freeGlobal || ((freeWindow !== (this && this.window)) && freeWindow) || freeSelf || this;
14+
var freeExports = (objectTypes[typeof exports] && exports && !exports.nodeType) ? exports : null;
15+
var freeModule = (objectTypes[typeof module] && module && !module.nodeType) ? module : null;
16+
var freeGlobal = checkGlobal(freeExports && freeModule && typeof global === 'object' && global);
17+
var freeSelf = checkGlobal(objectTypes[typeof self] && self);
18+
var freeWindow = checkGlobal(objectTypes[typeof window] && window);
19+
var moduleExports = (freeModule && freeModule.exports === freeExports) ? freeExports : null;
20+
var thisGlobal = checkGlobal(objectTypes[typeof this] && this);
21+
var root = freeGlobal || ((freeWindow !== (thisGlobal && thisGlobal.window)) && freeWindow) || freeSelf || thisGlobal || Function('return this')();
1922

2023
var Rx = {
2124
internals: {},

dist/rx.all.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/rx.all.min.js

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)