Template Upload

This commit is contained in:
SOUTHERNCO\x2mjbyrn
2017-05-17 13:45:25 -04:00
parent 415b9c25f3
commit 7efe7605b8
11476 changed files with 2170865 additions and 34 deletions

6
node_modules/rxjs/util/AnimationFrame.d.ts generated vendored Normal file
View File

@ -0,0 +1,6 @@
export declare class RequestAnimationFrameDefinition {
cancelAnimationFrame: (handle: number) => void;
requestAnimationFrame: (cb: () => void) => number;
constructor(root: any);
}
export declare const AnimationFrame: RequestAnimationFrameDefinition;

34
node_modules/rxjs/util/AnimationFrame.js generated vendored Normal file
View File

@ -0,0 +1,34 @@
"use strict";
var root_1 = require('./root');
var RequestAnimationFrameDefinition = (function () {
function RequestAnimationFrameDefinition(root) {
if (root.requestAnimationFrame) {
this.cancelAnimationFrame = root.cancelAnimationFrame.bind(root);
this.requestAnimationFrame = root.requestAnimationFrame.bind(root);
}
else if (root.mozRequestAnimationFrame) {
this.cancelAnimationFrame = root.mozCancelAnimationFrame.bind(root);
this.requestAnimationFrame = root.mozRequestAnimationFrame.bind(root);
}
else if (root.webkitRequestAnimationFrame) {
this.cancelAnimationFrame = root.webkitCancelAnimationFrame.bind(root);
this.requestAnimationFrame = root.webkitRequestAnimationFrame.bind(root);
}
else if (root.msRequestAnimationFrame) {
this.cancelAnimationFrame = root.msCancelAnimationFrame.bind(root);
this.requestAnimationFrame = root.msRequestAnimationFrame.bind(root);
}
else if (root.oRequestAnimationFrame) {
this.cancelAnimationFrame = root.oCancelAnimationFrame.bind(root);
this.requestAnimationFrame = root.oRequestAnimationFrame.bind(root);
}
else {
this.cancelAnimationFrame = root.clearTimeout.bind(root);
this.requestAnimationFrame = function (cb) { return root.setTimeout(cb, 1000 / 60); };
}
}
return RequestAnimationFrameDefinition;
}());
exports.RequestAnimationFrameDefinition = RequestAnimationFrameDefinition;
exports.AnimationFrame = new RequestAnimationFrameDefinition(root_1.root);
//# sourceMappingURL=AnimationFrame.js.map

1
node_modules/rxjs/util/AnimationFrame.js.map generated vendored Normal file
View File

@ -0,0 +1 @@
{"version":3,"file":"AnimationFrame.js","sourceRoot":"","sources":["../../../src/util/AnimationFrame.ts"],"names":[],"mappings":";AAAA,qBAAqB,QAAQ,CAAC,CAAA;AAE9B;IAGE,yCAAY,IAAS;QACnB,EAAE,CAAC,CAAC,IAAI,CAAC,qBAAqB,CAAC,CAAC,CAAC;YAC/B,IAAI,CAAC,oBAAoB,GAAG,IAAI,CAAC,oBAAoB,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;YACjE,IAAI,CAAC,qBAAqB,GAAG,IAAI,CAAC,qBAAqB,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QACrE,CAAC;QAAC,IAAI,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,wBAAwB,CAAC,CAAC,CAAC;YACzC,IAAI,CAAC,oBAAoB,GAAG,IAAI,CAAC,uBAAuB,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;YACpE,IAAI,CAAC,qBAAqB,GAAG,IAAI,CAAC,wBAAwB,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QACxE,CAAC;QAAC,IAAI,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,2BAA2B,CAAC,CAAC,CAAC;YAC5C,IAAI,CAAC,oBAAoB,GAAG,IAAI,CAAC,0BAA0B,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;YACvE,IAAI,CAAC,qBAAqB,GAAG,IAAI,CAAC,2BAA2B,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QAC3E,CAAC;QAAC,IAAI,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,uBAAuB,CAAC,CAAC,CAAC;YACxC,IAAI,CAAC,oBAAoB,GAAG,IAAI,CAAC,sBAAsB,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;YACnE,IAAI,CAAC,qBAAqB,GAAG,IAAI,CAAC,uBAAuB,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QACvE,CAAC;QAAC,IAAI,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,sBAAsB,CAAC,CAAC,CAAC;YACvC,IAAI,CAAC,oBAAoB,GAAG,IAAI,CAAC,qBAAqB,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;YAClE,IAAI,CAAC,qBAAqB,GAAG,IAAI,CAAC,sBAAsB,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QACtE,CAAC;QAAC,IAAI,CAAC,CAAC;YACN,IAAI,CAAC,oBAAoB,GAAG,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;YACzD,IAAI,CAAC,qBAAqB,GAAG,UAAS,EAAE,IAAI,MAAM,CAAC,IAAI,CAAC,UAAU,CAAC,EAAE,EAAE,IAAI,GAAG,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC;QACvF,CAAC;IACH,CAAC;IACH,sCAAC;AAAD,CAAC,AAxBD,IAwBC;AAxBY,uCAA+B,kCAwB3C,CAAA;AAEY,sBAAc,GAAG,IAAI,+BAA+B,CAAC,WAAI,CAAC,CAAC"}

3
node_modules/rxjs/util/ArgumentOutOfRangeError.d.ts generated vendored Normal file
View File

@ -0,0 +1,3 @@
export declare class ArgumentOutOfRangeError extends Error {
constructor();
}

16
node_modules/rxjs/util/ArgumentOutOfRangeError.js generated vendored Normal file
View File

@ -0,0 +1,16 @@
"use strict";
var __extends = (this && this.__extends) || function (d, b) {
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
var ArgumentOutOfRangeError = (function (_super) {
__extends(ArgumentOutOfRangeError, _super);
function ArgumentOutOfRangeError() {
_super.call(this, 'argument out of range');
this.name = 'ArgumentOutOfRangeError';
}
return ArgumentOutOfRangeError;
}(Error));
exports.ArgumentOutOfRangeError = ArgumentOutOfRangeError;
//# sourceMappingURL=ArgumentOutOfRangeError.js.map

View File

@ -0,0 +1 @@
{"version":3,"file":"ArgumentOutOfRangeError.js","sourceRoot":"","sources":["../../../src/util/ArgumentOutOfRangeError.ts"],"names":[],"mappings":";;;;;;AAAA;IAA6C,2CAAK;IAChD;QACE,kBAAM,uBAAuB,CAAC,CAAC;QAC/B,IAAI,CAAC,IAAI,GAAG,yBAAyB,CAAC;IACxC,CAAC;IACH,8BAAC;AAAD,CAAC,AALD,CAA6C,KAAK,GAKjD;AALY,+BAAuB,0BAKnC,CAAA"}

3
node_modules/rxjs/util/EmptyError.d.ts generated vendored Normal file
View File

@ -0,0 +1,3 @@
export declare class EmptyError extends Error {
constructor();
}

16
node_modules/rxjs/util/EmptyError.js generated vendored Normal file
View File

@ -0,0 +1,16 @@
"use strict";
var __extends = (this && this.__extends) || function (d, b) {
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
var EmptyError = (function (_super) {
__extends(EmptyError, _super);
function EmptyError() {
_super.call(this, 'no elements in sequence');
this.name = 'EmptyError';
}
return EmptyError;
}(Error));
exports.EmptyError = EmptyError;
//# sourceMappingURL=EmptyError.js.map

1
node_modules/rxjs/util/EmptyError.js.map generated vendored Normal file
View File

@ -0,0 +1 @@
{"version":3,"file":"EmptyError.js","sourceRoot":"","sources":["../../../src/util/EmptyError.ts"],"names":[],"mappings":";;;;;;AAAA;IAAgC,8BAAK;IACnC;QACE,kBAAM,yBAAyB,CAAC,CAAC;QACjC,IAAI,CAAC,IAAI,GAAG,YAAY,CAAC;IAC3B,CAAC;IACH,iBAAC;AAAD,CAAC,AALD,CAAgC,KAAK,GAKpC;AALY,kBAAU,aAKtB,CAAA"}

8
node_modules/rxjs/util/FastMap.d.ts generated vendored Normal file
View File

@ -0,0 +1,8 @@
export declare class FastMap {
private values;
delete(key: string): boolean;
set(key: string, value: any): FastMap;
get(key: string): any;
forEach(cb: (value: any, key: any) => void, thisArg?: any): void;
clear(): void;
}

31
node_modules/rxjs/util/FastMap.js generated vendored Normal file
View File

@ -0,0 +1,31 @@
"use strict";
var FastMap = (function () {
function FastMap() {
this.values = {};
}
FastMap.prototype.delete = function (key) {
this.values[key] = null;
return true;
};
FastMap.prototype.set = function (key, value) {
this.values[key] = value;
return this;
};
FastMap.prototype.get = function (key) {
return this.values[key];
};
FastMap.prototype.forEach = function (cb, thisArg) {
var values = this.values;
for (var key in values) {
if (values.hasOwnProperty(key) && values[key] !== null) {
cb.call(thisArg, values[key], key);
}
}
};
FastMap.prototype.clear = function () {
this.values = {};
};
return FastMap;
}());
exports.FastMap = FastMap;
//# sourceMappingURL=FastMap.js.map

1
node_modules/rxjs/util/FastMap.js.map generated vendored Normal file
View File

@ -0,0 +1 @@
{"version":3,"file":"FastMap.js","sourceRoot":"","sources":["../../../src/util/FastMap.ts"],"names":[],"mappings":";AAAA;IAAA;QACU,WAAM,GAAW,EAAE,CAAC;IA4B9B,CAAC;IA1BC,wBAAM,GAAN,UAAO,GAAW;QAChB,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC;QACxB,MAAM,CAAC,IAAI,CAAC;IACd,CAAC;IAED,qBAAG,GAAH,UAAI,GAAW,EAAE,KAAU;QACzB,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,GAAG,KAAK,CAAC;QACzB,MAAM,CAAC,IAAI,CAAC;IACd,CAAC;IAED,qBAAG,GAAH,UAAI,GAAW;QACb,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC;IAC1B,CAAC;IAED,yBAAO,GAAP,UAAQ,EAAkC,EAAE,OAAa;QACvD,IAAM,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC;QAC3B,GAAG,CAAC,CAAC,IAAI,GAAG,IAAI,MAAM,CAAC,CAAC,CAAC;YACvB,EAAE,CAAC,CAAC,MAAM,CAAC,cAAc,CAAC,GAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,KAAK,IAAI,CAAC,CAAC,CAAC;gBACvD,EAAE,CAAC,IAAI,CAAC,OAAO,EAAE,MAAM,CAAC,GAAG,CAAC,EAAE,GAAG,CAAC,CAAC;YACrC,CAAC;QACH,CAAC;IACH,CAAC;IAED,uBAAK,GAAL;QACE,IAAI,CAAC,MAAM,GAAG,EAAE,CAAC;IACnB,CAAC;IACH,cAAC;AAAD,CAAC,AA7BD,IA6BC;AA7BY,eAAO,UA6BnB,CAAA"}

23
node_modules/rxjs/util/Immediate.d.ts generated vendored Normal file
View File

@ -0,0 +1,23 @@
export declare class ImmediateDefinition {
private root;
setImmediate: (cb: () => void) => number;
clearImmediate: (handle: number) => void;
private identify(o);
tasksByHandle: any;
nextHandle: number;
currentlyRunningATask: boolean;
constructor(root: any);
canUseProcessNextTick(): boolean;
canUseMessageChannel(): boolean;
canUseReadyStateChange(): boolean;
canUsePostMessage(): boolean;
partiallyApplied(handler: any, ...args: any[]): () => void;
addFromSetImmediateArguments(args: any[]): number;
createProcessNextTickSetImmediate(): () => any;
createPostMessageSetImmediate(): () => any;
runIfPresent(handle: any): void;
createMessageChannelSetImmediate(): () => any;
createReadyStateChangeSetImmediate(): () => any;
createSetTimeoutSetImmediate(): () => any;
}
export declare const Immediate: ImmediateDefinition;

209
node_modules/rxjs/util/Immediate.js generated vendored Normal file
View File

@ -0,0 +1,209 @@
/**
Some credit for this helper goes to http://github.com/YuzuJS/setImmediate
*/
"use strict";
var root_1 = require('./root');
var ImmediateDefinition = (function () {
function ImmediateDefinition(root) {
this.root = root;
if (root.setImmediate && typeof root.setImmediate === 'function') {
this.setImmediate = root.setImmediate.bind(root);
this.clearImmediate = root.clearImmediate.bind(root);
}
else {
this.nextHandle = 1;
this.tasksByHandle = {};
this.currentlyRunningATask = false;
// Don't get fooled by e.g. browserify environments.
if (this.canUseProcessNextTick()) {
// For Node.js before 0.9
this.setImmediate = this.createProcessNextTickSetImmediate();
}
else if (this.canUsePostMessage()) {
// For non-IE10 modern browsers
this.setImmediate = this.createPostMessageSetImmediate();
}
else if (this.canUseMessageChannel()) {
// For web workers, where supported
this.setImmediate = this.createMessageChannelSetImmediate();
}
else if (this.canUseReadyStateChange()) {
// For IE 68
this.setImmediate = this.createReadyStateChangeSetImmediate();
}
else {
// For older browsers
this.setImmediate = this.createSetTimeoutSetImmediate();
}
var ci = function clearImmediate(handle) {
delete clearImmediate.instance.tasksByHandle[handle];
};
ci.instance = this;
this.clearImmediate = ci;
}
}
ImmediateDefinition.prototype.identify = function (o) {
return this.root.Object.prototype.toString.call(o);
};
ImmediateDefinition.prototype.canUseProcessNextTick = function () {
return this.identify(this.root.process) === '[object process]';
};
ImmediateDefinition.prototype.canUseMessageChannel = function () {
return Boolean(this.root.MessageChannel);
};
ImmediateDefinition.prototype.canUseReadyStateChange = function () {
var document = this.root.document;
return Boolean(document && 'onreadystatechange' in document.createElement('script'));
};
ImmediateDefinition.prototype.canUsePostMessage = function () {
var root = this.root;
// The test against `importScripts` prevents this implementation from being installed inside a web worker,
// where `root.postMessage` means something completely different and can't be used for this purpose.
if (root.postMessage && !root.importScripts) {
var postMessageIsAsynchronous_1 = true;
var oldOnMessage = root.onmessage;
root.onmessage = function () {
postMessageIsAsynchronous_1 = false;
};
root.postMessage('', '*');
root.onmessage = oldOnMessage;
return postMessageIsAsynchronous_1;
}
return false;
};
// This function accepts the same arguments as setImmediate, but
// returns a function that requires no arguments.
ImmediateDefinition.prototype.partiallyApplied = function (handler) {
var args = [];
for (var _i = 1; _i < arguments.length; _i++) {
args[_i - 1] = arguments[_i];
}
var fn = function result() {
var _a = result, handler = _a.handler, args = _a.args;
if (typeof handler === 'function') {
handler.apply(undefined, args);
}
else {
(new Function('' + handler))();
}
};
fn.handler = handler;
fn.args = args;
return fn;
};
ImmediateDefinition.prototype.addFromSetImmediateArguments = function (args) {
this.tasksByHandle[this.nextHandle] = this.partiallyApplied.apply(undefined, args);
return this.nextHandle++;
};
ImmediateDefinition.prototype.createProcessNextTickSetImmediate = function () {
var fn = function setImmediate() {
var instance = setImmediate.instance;
var handle = instance.addFromSetImmediateArguments(arguments);
instance.root.process.nextTick(instance.partiallyApplied(instance.runIfPresent, handle));
return handle;
};
fn.instance = this;
return fn;
};
ImmediateDefinition.prototype.createPostMessageSetImmediate = function () {
// Installs an event handler on `global` for the `message` event: see
// * https://developer.mozilla.org/en/DOM/window.postMessage
// * http://www.whatwg.org/specs/web-apps/current-work/multipage/comms.html#crossDocumentMessages
var root = this.root;
var messagePrefix = 'setImmediate$' + root.Math.random() + '$';
var onGlobalMessage = function globalMessageHandler(event) {
var instance = globalMessageHandler.instance;
if (event.source === root &&
typeof event.data === 'string' &&
event.data.indexOf(messagePrefix) === 0) {
instance.runIfPresent(+event.data.slice(messagePrefix.length));
}
};
onGlobalMessage.instance = this;
root.addEventListener('message', onGlobalMessage, false);
var fn = function setImmediate() {
var _a = setImmediate, messagePrefix = _a.messagePrefix, instance = _a.instance;
var handle = instance.addFromSetImmediateArguments(arguments);
instance.root.postMessage(messagePrefix + handle, '*');
return handle;
};
fn.instance = this;
fn.messagePrefix = messagePrefix;
return fn;
};
ImmediateDefinition.prototype.runIfPresent = function (handle) {
// From the spec: 'Wait until any invocations of this algorithm started before this one have completed.'
// So if we're currently running a task, we'll need to delay this invocation.
if (this.currentlyRunningATask) {
// Delay by doing a setTimeout. setImmediate was tried instead, but in Firefox 7 it generated a
// 'too much recursion' error.
this.root.setTimeout(this.partiallyApplied(this.runIfPresent, handle), 0);
}
else {
var task = this.tasksByHandle[handle];
if (task) {
this.currentlyRunningATask = true;
try {
task();
}
finally {
this.clearImmediate(handle);
this.currentlyRunningATask = false;
}
}
}
};
ImmediateDefinition.prototype.createMessageChannelSetImmediate = function () {
var _this = this;
var channel = new this.root.MessageChannel();
channel.port1.onmessage = function (event) {
var handle = event.data;
_this.runIfPresent(handle);
};
var fn = function setImmediate() {
var _a = setImmediate, channel = _a.channel, instance = _a.instance;
var handle = instance.addFromSetImmediateArguments(arguments);
channel.port2.postMessage(handle);
return handle;
};
fn.channel = channel;
fn.instance = this;
return fn;
};
ImmediateDefinition.prototype.createReadyStateChangeSetImmediate = function () {
var fn = function setImmediate() {
var instance = setImmediate.instance;
var root = instance.root;
var doc = root.document;
var html = doc.documentElement;
var handle = instance.addFromSetImmediateArguments(arguments);
// Create a <script> element; its readystatechange event will be fired asynchronously once it is inserted
// into the document. Do so, thus queuing up the task. Remember to clean up once it's been called.
var script = doc.createElement('script');
script.onreadystatechange = function () {
instance.runIfPresent(handle);
script.onreadystatechange = null;
html.removeChild(script);
script = null;
};
html.appendChild(script);
return handle;
};
fn.instance = this;
return fn;
};
ImmediateDefinition.prototype.createSetTimeoutSetImmediate = function () {
var fn = function setImmediate() {
var instance = setImmediate.instance;
var handle = instance.addFromSetImmediateArguments(arguments);
instance.root.setTimeout(instance.partiallyApplied(instance.runIfPresent, handle), 0);
return handle;
};
fn.instance = this;
return fn;
};
return ImmediateDefinition;
}());
exports.ImmediateDefinition = ImmediateDefinition;
exports.Immediate = new ImmediateDefinition(root_1.root);
//# sourceMappingURL=Immediate.js.map

1
node_modules/rxjs/util/Immediate.js.map generated vendored Normal file

File diff suppressed because one or more lines are too long

1
node_modules/rxjs/util/Map.d.ts generated vendored Normal file
View File

@ -0,0 +1 @@
export declare const Map: any;

5
node_modules/rxjs/util/Map.js generated vendored Normal file
View File

@ -0,0 +1,5 @@
"use strict";
var root_1 = require('./root');
var MapPolyfill_1 = require('./MapPolyfill');
exports.Map = root_1.root.Map || (function () { return MapPolyfill_1.MapPolyfill; })();
//# sourceMappingURL=Map.js.map

1
node_modules/rxjs/util/Map.js.map generated vendored Normal file
View File

@ -0,0 +1 @@
{"version":3,"file":"Map.js","sourceRoot":"","sources":["../../../src/util/Map.ts"],"names":[],"mappings":";AAAA,qBAAmB,QAAQ,CAAC,CAAA;AAC5B,4BAA0B,eAAe,CAAC,CAAA;AAE7B,WAAG,GAAG,WAAI,CAAC,GAAG,IAAI,CAAC,cAAM,OAAA,yBAAW,EAAX,CAAW,CAAC,EAAE,CAAC"}

10
node_modules/rxjs/util/MapPolyfill.d.ts generated vendored Normal file
View File

@ -0,0 +1,10 @@
export declare class MapPolyfill {
size: number;
private _values;
private _keys;
get(key: any): any;
set(key: any, value: any): this;
delete(key: any): boolean;
clear(): void;
forEach(cb: Function, thisArg: any): void;
}

47
node_modules/rxjs/util/MapPolyfill.js generated vendored Normal file
View File

@ -0,0 +1,47 @@
"use strict";
var MapPolyfill = (function () {
function MapPolyfill() {
this.size = 0;
this._values = [];
this._keys = [];
}
MapPolyfill.prototype.get = function (key) {
var i = this._keys.indexOf(key);
return i === -1 ? undefined : this._values[i];
};
MapPolyfill.prototype.set = function (key, value) {
var i = this._keys.indexOf(key);
if (i === -1) {
this._keys.push(key);
this._values.push(value);
this.size++;
}
else {
this._values[i] = value;
}
return this;
};
MapPolyfill.prototype.delete = function (key) {
var i = this._keys.indexOf(key);
if (i === -1) {
return false;
}
this._values.splice(i, 1);
this._keys.splice(i, 1);
this.size--;
return true;
};
MapPolyfill.prototype.clear = function () {
this._keys.length = 0;
this._values.length = 0;
this.size = 0;
};
MapPolyfill.prototype.forEach = function (cb, thisArg) {
for (var i = 0; i < this.size; i++) {
cb.call(thisArg, this._values[i], this._keys[i]);
}
};
return MapPolyfill;
}());
exports.MapPolyfill = MapPolyfill;
//# sourceMappingURL=MapPolyfill.js.map

1
node_modules/rxjs/util/MapPolyfill.js.map generated vendored Normal file
View File

@ -0,0 +1 @@
{"version":3,"file":"MapPolyfill.js","sourceRoot":"","sources":["../../../src/util/MapPolyfill.ts"],"names":[],"mappings":";AAAA;IAAA;QACS,SAAI,GAAG,CAAC,CAAC;QACR,YAAO,GAAU,EAAE,CAAC;QACpB,UAAK,GAAU,EAAE,CAAC;IAuC5B,CAAC;IArCC,yBAAG,GAAH,UAAI,GAAQ;QACV,IAAM,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;QAClC,MAAM,CAAC,CAAC,KAAK,CAAC,CAAC,GAAG,SAAS,GAAG,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;IAChD,CAAC;IAED,yBAAG,GAAH,UAAI,GAAQ,EAAE,KAAU;QACtB,IAAM,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;QAClC,EAAE,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC;YACb,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;YACrB,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;YACzB,IAAI,CAAC,IAAI,EAAE,CAAC;QACd,CAAC;QAAC,IAAI,CAAC,CAAC;YACN,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,GAAG,KAAK,CAAC;QAC1B,CAAC;QACD,MAAM,CAAC,IAAI,CAAC;IACd,CAAC;IAED,4BAAM,GAAN,UAAO,GAAQ;QACb,IAAM,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;QAClC,EAAE,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC;YAAC,MAAM,CAAC,KAAK,CAAC;QAAC,CAAC;QAC/B,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QAC1B,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QACxB,IAAI,CAAC,IAAI,EAAE,CAAC;QACZ,MAAM,CAAC,IAAI,CAAC;IACd,CAAC;IAED,2BAAK,GAAL;QACE,IAAI,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC;QACtB,IAAI,CAAC,OAAO,CAAC,MAAM,GAAG,CAAC,CAAC;QACxB,IAAI,CAAC,IAAI,GAAG,CAAC,CAAC;IAChB,CAAC;IAED,6BAAO,GAAP,UAAQ,EAAY,EAAE,OAAY;QAChC,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,IAAI,EAAE,CAAC,EAAE,EAAE,CAAC;YACnC,EAAE,CAAC,IAAI,CAAC,OAAO,EAAE,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC;QACnD,CAAC;IACH,CAAC;IACH,kBAAC;AAAD,CAAC,AA1CD,IA0CC;AA1CY,mBAAW,cA0CvB,CAAA"}

7
node_modules/rxjs/util/ObjectUnsubscribedError.d.ts generated vendored Normal file
View File

@ -0,0 +1,7 @@
/**
* an error thrown when an action is invalid because the object
* has been unsubscribed
*/
export declare class ObjectUnsubscribedError extends Error {
constructor();
}

20
node_modules/rxjs/util/ObjectUnsubscribedError.js generated vendored Normal file
View File

@ -0,0 +1,20 @@
"use strict";
var __extends = (this && this.__extends) || function (d, b) {
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
/**
* an error thrown when an action is invalid because the object
* has been unsubscribed
*/
var ObjectUnsubscribedError = (function (_super) {
__extends(ObjectUnsubscribedError, _super);
function ObjectUnsubscribedError() {
_super.call(this, 'object unsubscribed');
this.name = 'ObjectUnsubscribedError';
}
return ObjectUnsubscribedError;
}(Error));
exports.ObjectUnsubscribedError = ObjectUnsubscribedError;
//# sourceMappingURL=ObjectUnsubscribedError.js.map

View File

@ -0,0 +1 @@
{"version":3,"file":"ObjectUnsubscribedError.js","sourceRoot":"","sources":["../../../src/util/ObjectUnsubscribedError.ts"],"names":[],"mappings":";;;;;;AAAA;;;GAGG;AACH;IAA6C,2CAAK;IAChD;QACE,kBAAM,qBAAqB,CAAC,CAAC;QAC7B,IAAI,CAAC,IAAI,GAAG,yBAAyB,CAAC;IACxC,CAAC;IACH,8BAAC;AAAD,CAAC,AALD,CAA6C,KAAK,GAKjD;AALY,+BAAuB,0BAKnC,CAAA"}

7
node_modules/rxjs/util/SymbolShim.d.ts generated vendored Normal file
View File

@ -0,0 +1,7 @@
export declare function polyfillSymbol(root: any): any;
export declare function ensureFor(Symbol: any): void;
export declare function ensureSymbol(root: any): any;
export declare function symbolForPolyfill(key: any): string;
export declare function ensureIterator(Symbol: any, root: any): void;
export declare function ensureObservable(Symbol: any): void;
export declare const SymbolShim: any;

69
node_modules/rxjs/util/SymbolShim.js generated vendored Normal file
View File

@ -0,0 +1,69 @@
"use strict";
var root_1 = require('./root');
function polyfillSymbol(root) {
var Symbol = ensureSymbol(root);
ensureIterator(Symbol, root);
ensureObservable(Symbol);
ensureFor(Symbol);
return Symbol;
}
exports.polyfillSymbol = polyfillSymbol;
function ensureFor(Symbol) {
if (!Symbol.for) {
Symbol.for = symbolForPolyfill;
}
}
exports.ensureFor = ensureFor;
var id = 0;
function ensureSymbol(root) {
if (!root.Symbol) {
root.Symbol = function symbolFuncPolyfill(description) {
return "@@Symbol(" + description + "):" + id++;
};
}
return root.Symbol;
}
exports.ensureSymbol = ensureSymbol;
function symbolForPolyfill(key) {
return '@@' + key;
}
exports.symbolForPolyfill = symbolForPolyfill;
function ensureIterator(Symbol, root) {
if (!Symbol.iterator) {
if (typeof Symbol.for === 'function') {
Symbol.iterator = Symbol.for('iterator');
}
else if (root.Set && typeof new root.Set()['@@iterator'] === 'function') {
// Bug for mozilla version
Symbol.iterator = '@@iterator';
}
else if (root.Map) {
// es6-shim specific logic
var keys = Object.getOwnPropertyNames(root.Map.prototype);
for (var i = 0; i < keys.length; ++i) {
var key = keys[i];
if (key !== 'entries' && key !== 'size' && root.Map.prototype[key] === root.Map.prototype['entries']) {
Symbol.iterator = key;
break;
}
}
}
else {
Symbol.iterator = '@@iterator';
}
}
}
exports.ensureIterator = ensureIterator;
function ensureObservable(Symbol) {
if (!Symbol.observable) {
if (typeof Symbol.for === 'function') {
Symbol.observable = Symbol.for('observable');
}
else {
Symbol.observable = '@@observable';
}
}
}
exports.ensureObservable = ensureObservable;
exports.SymbolShim = polyfillSymbol(root_1.root);
//# sourceMappingURL=SymbolShim.js.map

1
node_modules/rxjs/util/SymbolShim.js.map generated vendored Normal file
View File

@ -0,0 +1 @@
{"version":3,"file":"SymbolShim.js","sourceRoot":"","sources":["../../../src/util/SymbolShim.ts"],"names":[],"mappings":"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"}

1
node_modules/rxjs/util/applyMixins.d.ts generated vendored Normal file
View File

@ -0,0 +1 @@
export declare function applyMixins(derivedCtor: any, baseCtors: any[]): void;

13
node_modules/rxjs/util/applyMixins.js generated vendored Normal file
View File

@ -0,0 +1,13 @@
"use strict";
function applyMixins(derivedCtor, baseCtors) {
for (var i = 0, len = baseCtors.length; i < len; i++) {
var baseCtor = baseCtors[i];
var propertyKeys = Object.getOwnPropertyNames(baseCtor.prototype);
for (var j = 0, len2 = propertyKeys.length; j < len2; j++) {
var name_1 = propertyKeys[j];
derivedCtor.prototype[name_1] = baseCtor.prototype[name_1];
}
}
}
exports.applyMixins = applyMixins;
//# sourceMappingURL=applyMixins.js.map

1
node_modules/rxjs/util/applyMixins.js.map generated vendored Normal file
View File

@ -0,0 +1 @@
{"version":3,"file":"applyMixins.js","sourceRoot":"","sources":["../../../src/util/applyMixins.ts"],"names":[],"mappings":";AAAA,qBAA4B,WAAgB,EAAE,SAAgB;IAC5D,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,SAAS,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE,CAAC;QACrD,IAAM,QAAQ,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;QAC9B,IAAM,YAAY,GAAG,MAAM,CAAC,mBAAmB,CAAC,QAAQ,CAAC,SAAS,CAAC,CAAC;QACpE,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,IAAI,GAAG,YAAY,CAAC,MAAM,EAAE,CAAC,GAAG,IAAI,EAAE,CAAC,EAAE,EAAE,CAAC;YAC1D,IAAM,MAAI,GAAG,YAAY,CAAC,CAAC,CAAC,CAAC;YAC7B,WAAW,CAAC,SAAS,CAAC,MAAI,CAAC,GAAG,QAAQ,CAAC,SAAS,CAAC,MAAI,CAAC,CAAC;QACzD,CAAC;IACH,CAAC;AACH,CAAC;AATe,mBAAW,cAS1B,CAAA"}

1
node_modules/rxjs/util/assign.d.ts generated vendored Normal file
View File

@ -0,0 +1 @@
export declare const assign: (target: Object, ...sources: Array<Object>) => Object;

31
node_modules/rxjs/util/assign.js generated vendored Normal file
View File

@ -0,0 +1,31 @@
"use strict";
var root_1 = require('./root');
var Object = root_1.root.Object;
if (typeof Object.assign != 'function') {
(function () {
Object.assign = function assignPolyfill(target) {
var sources = [];
for (var _i = 1; _i < arguments.length; _i++) {
sources[_i - 1] = arguments[_i];
}
if (target === undefined || target === null) {
throw new TypeError('Cannot convert undefined or null to object');
}
var output = Object(target);
var len = sources.length;
for (var index = 0; index < len; index++) {
var source = sources[index];
if (source !== undefined && source !== null) {
for (var key in source) {
if (source.hasOwnProperty(key)) {
output[key] = source[key];
}
}
}
}
return output;
};
})();
}
exports.assign = Object.assign;
//# sourceMappingURL=assign.js.map

1
node_modules/rxjs/util/assign.js.map generated vendored Normal file
View File

@ -0,0 +1 @@
{"version":3,"file":"assign.js","sourceRoot":"","sources":["../../../src/util/assign.ts"],"names":[],"mappings":";AAAA,qBAAmB,QAAQ,CAAC,CAAA;AAE5B,IAAM,MAAM,GAAG,WAAI,CAAC,MAAM,CAAC;AAE3B,EAAE,CAAC,CAAC,OAAa,MAAO,CAAC,MAAM,IAAI,UAAU,CAAC,CAAC,CAAC;IAC9C,CAAC;QACO,MAAO,CAAC,MAAM,GAAG,wBAAwB,MAAc;YAAE,iBAAyB;iBAAzB,WAAyB,CAAzB,sBAAyB,CAAzB,IAAyB;gBAAzB,gCAAyB;;YACtF,EAAE,CAAC,CAAC,MAAM,KAAK,SAAS,IAAI,MAAM,KAAK,IAAI,CAAC,CAAC,CAAC;gBAC5C,MAAM,IAAI,SAAS,CAAC,4CAA4C,CAAC,CAAC;YACpE,CAAC;YAED,IAAM,MAAM,GAAG,MAAM,CAAC,MAAM,CAAC,CAAC;YAC9B,IAAM,GAAG,GAAG,OAAO,CAAC,MAAM,CAAC;YAC3B,GAAG,CAAC,CAAC,IAAI,KAAK,GAAG,CAAC,EAAE,KAAK,GAAG,GAAG,EAAE,KAAK,EAAE,EAAE,CAAC;gBACzC,IAAI,MAAM,GAAG,OAAO,CAAC,KAAK,CAAC,CAAC;gBAC5B,EAAE,CAAC,CAAC,MAAM,KAAK,SAAS,IAAI,MAAM,KAAK,IAAI,CAAC,CAAC,CAAC;oBAC5C,GAAG,CAAC,CAAC,IAAI,GAAG,IAAI,MAAM,CAAC,CAAC,CAAC;wBACvB,EAAE,CAAC,CAAC,MAAM,CAAC,cAAc,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;4BAC/B,MAAM,CAAC,GAAG,CAAC,GAAG,MAAM,CAAC,GAAG,CAAC,CAAC;wBAC5B,CAAC;oBACH,CAAC;gBACH,CAAC;YACH,CAAC;YAED,MAAM,CAAC,MAAM,CAAC;QAChB,CAAC,CAAC;IACJ,CAAC,CAAC,EAAE,CAAC;AACP,CAAC;AAEY,cAAM,GAA0D,MAAM,CAAC,MAAM,CAAC"}

1
node_modules/rxjs/util/errorObject.d.ts generated vendored Normal file
View File

@ -0,0 +1 @@
export declare var errorObject: any;

4
node_modules/rxjs/util/errorObject.js generated vendored Normal file
View File

@ -0,0 +1,4 @@
"use strict";
// typeof any so that it we don't have to cast when comparing a result to the error object
exports.errorObject = { e: {} };
//# sourceMappingURL=errorObject.js.map

1
node_modules/rxjs/util/errorObject.js.map generated vendored Normal file
View File

@ -0,0 +1 @@
{"version":3,"file":"errorObject.js","sourceRoot":"","sources":["../../../src/util/errorObject.ts"],"names":[],"mappings":";AAAA,0FAA0F;AAC/E,mBAAW,GAAQ,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC"}

1
node_modules/rxjs/util/isArray.d.ts generated vendored Normal file
View File

@ -0,0 +1 @@
export declare const isArray: (arg: any) => arg is any[];

3
node_modules/rxjs/util/isArray.js generated vendored Normal file
View File

@ -0,0 +1,3 @@
"use strict";
exports.isArray = Array.isArray || (function (x) { return x && typeof x.length === 'number'; });
//# sourceMappingURL=isArray.js.map

1
node_modules/rxjs/util/isArray.js.map generated vendored Normal file
View File

@ -0,0 +1 @@
{"version":3,"file":"isArray.js","sourceRoot":"","sources":["../../../src/util/isArray.ts"],"names":[],"mappings":";AAAa,eAAO,GAAG,KAAK,CAAC,OAAO,IAAI,CAAC,UAAI,CAAM,IAAe,OAAA,CAAC,IAAI,OAAO,CAAC,CAAC,MAAM,KAAK,QAAQ,EAAjC,CAAiC,CAAC,CAAC"}

1
node_modules/rxjs/util/isDate.d.ts generated vendored Normal file
View File

@ -0,0 +1 @@
export declare function isDate(value: any): value is Date;

6
node_modules/rxjs/util/isDate.js generated vendored Normal file
View File

@ -0,0 +1,6 @@
"use strict";
function isDate(value) {
return value instanceof Date && !isNaN(+value);
}
exports.isDate = isDate;
//# sourceMappingURL=isDate.js.map

1
node_modules/rxjs/util/isDate.js.map generated vendored Normal file
View File

@ -0,0 +1 @@
{"version":3,"file":"isDate.js","sourceRoot":"","sources":["../../../src/util/isDate.ts"],"names":[],"mappings":";AAAA,gBAAuB,KAAU;IAC/B,MAAM,CAAC,KAAK,YAAY,IAAI,IAAI,CAAC,KAAK,CAAC,CAAC,KAAK,CAAC,CAAC;AACjD,CAAC;AAFe,cAAM,SAErB,CAAA"}

1
node_modules/rxjs/util/isFunction.d.ts generated vendored Normal file
View File

@ -0,0 +1 @@
export declare function isFunction(x: any): x is Function;

6
node_modules/rxjs/util/isFunction.js generated vendored Normal file
View File

@ -0,0 +1,6 @@
"use strict";
function isFunction(x) {
return typeof x === 'function';
}
exports.isFunction = isFunction;
//# sourceMappingURL=isFunction.js.map

1
node_modules/rxjs/util/isFunction.js.map generated vendored Normal file
View File

@ -0,0 +1 @@
{"version":3,"file":"isFunction.js","sourceRoot":"","sources":["../../../src/util/isFunction.ts"],"names":[],"mappings":";AAAA,oBAA2B,CAAM;IAC/B,MAAM,CAAC,OAAO,CAAC,KAAK,UAAU,CAAC;AACjC,CAAC;AAFe,kBAAU,aAEzB,CAAA"}

1
node_modules/rxjs/util/isNumeric.d.ts generated vendored Normal file
View File

@ -0,0 +1 @@
export declare function isNumeric(val: any): val is number;

12
node_modules/rxjs/util/isNumeric.js generated vendored Normal file
View File

@ -0,0 +1,12 @@
"use strict";
var isArray_1 = require('../util/isArray');
function isNumeric(val) {
// parseFloat NaNs numeric-cast false positives (null|true|false|"")
// ...but misinterprets leading-number strings, particularly hex literals ("0x...")
// subtraction forces infinities to NaN
// adding 1 corrects loss of precision from parseFloat (#15100)
return !isArray_1.isArray(val) && (val - parseFloat(val) + 1) >= 0;
}
exports.isNumeric = isNumeric;
;
//# sourceMappingURL=isNumeric.js.map

1
node_modules/rxjs/util/isNumeric.js.map generated vendored Normal file
View File

@ -0,0 +1 @@
{"version":3,"file":"isNumeric.js","sourceRoot":"","sources":["../../../src/util/isNumeric.ts"],"names":[],"mappings":";AAAA,wBAAsB,iBAAiB,CAAC,CAAA;AAExC,mBAA0B,GAAQ;IAChC,oEAAoE;IACpE,mFAAmF;IACnF,uCAAuC;IACvC,+DAA+D;IAC/D,MAAM,CAAC,CAAC,iBAAO,CAAC,GAAG,CAAC,IAAI,CAAC,GAAG,GAAG,UAAU,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC;AAC3D,CAAC;AANe,iBAAS,YAMxB,CAAA;AAAA,CAAC"}

1
node_modules/rxjs/util/isObject.d.ts generated vendored Normal file
View File

@ -0,0 +1 @@
export declare function isObject(x: any): x is Object;

6
node_modules/rxjs/util/isObject.js generated vendored Normal file
View File

@ -0,0 +1,6 @@
"use strict";
function isObject(x) {
return x != null && typeof x === 'object';
}
exports.isObject = isObject;
//# sourceMappingURL=isObject.js.map

1
node_modules/rxjs/util/isObject.js.map generated vendored Normal file
View File

@ -0,0 +1 @@
{"version":3,"file":"isObject.js","sourceRoot":"","sources":["../../../src/util/isObject.ts"],"names":[],"mappings":";AAAA,kBAAyB,CAAM;IAC7B,MAAM,CAAC,CAAC,IAAI,IAAI,IAAI,OAAO,CAAC,KAAK,QAAQ,CAAC;AAC5C,CAAC;AAFe,gBAAQ,WAEvB,CAAA"}

1
node_modules/rxjs/util/isPromise.d.ts generated vendored Normal file
View File

@ -0,0 +1 @@
export declare function isPromise<T>(value: any | Promise<T>): value is Promise<T>;

6
node_modules/rxjs/util/isPromise.js generated vendored Normal file
View File

@ -0,0 +1,6 @@
"use strict";
function isPromise(value) {
return value && typeof value.subscribe !== 'function' && typeof value.then === 'function';
}
exports.isPromise = isPromise;
//# sourceMappingURL=isPromise.js.map

1
node_modules/rxjs/util/isPromise.js.map generated vendored Normal file
View File

@ -0,0 +1 @@
{"version":3,"file":"isPromise.js","sourceRoot":"","sources":["../../../src/util/isPromise.ts"],"names":[],"mappings":";AAAA,mBAA6B,KAAuB;IAClD,MAAM,CAAC,KAAK,IAAI,OAAa,KAAM,CAAC,SAAS,KAAK,UAAU,IAAI,OAAQ,KAAa,CAAC,IAAI,KAAK,UAAU,CAAC;AAC5G,CAAC;AAFe,iBAAS,YAExB,CAAA"}

2
node_modules/rxjs/util/isScheduler.d.ts generated vendored Normal file
View File

@ -0,0 +1,2 @@
import { Scheduler } from '../Scheduler';
export declare function isScheduler<T>(value: any): value is Scheduler;

6
node_modules/rxjs/util/isScheduler.js generated vendored Normal file
View File

@ -0,0 +1,6 @@
"use strict";
function isScheduler(value) {
return value && typeof value.schedule === 'function';
}
exports.isScheduler = isScheduler;
//# sourceMappingURL=isScheduler.js.map

1
node_modules/rxjs/util/isScheduler.js.map generated vendored Normal file
View File

@ -0,0 +1 @@
{"version":3,"file":"isScheduler.js","sourceRoot":"","sources":["../../../src/util/isScheduler.ts"],"names":[],"mappings":";AACA,qBAA+B,KAAU;IACvC,MAAM,CAAC,KAAK,IAAI,OAAa,KAAM,CAAC,QAAQ,KAAK,UAAU,CAAC;AAC9D,CAAC;AAFe,mBAAW,cAE1B,CAAA"}

1
node_modules/rxjs/util/noop.d.ts generated vendored Normal file
View File

@ -0,0 +1 @@
export declare function noop(): void;

5
node_modules/rxjs/util/noop.js generated vendored Normal file
View File

@ -0,0 +1,5 @@
"use strict";
/* tslint:disable:no-empty */
function noop() { }
exports.noop = noop;
//# sourceMappingURL=noop.js.map

1
node_modules/rxjs/util/noop.js.map generated vendored Normal file
View File

@ -0,0 +1 @@
{"version":3,"file":"noop.js","sourceRoot":"","sources":["../../../src/util/noop.ts"],"names":[],"mappings":";AAAA,6BAA6B;AAC7B,kBAAyB,CAAC;AAAV,YAAI,OAAM,CAAA"}

1
node_modules/rxjs/util/not.d.ts generated vendored Normal file
View File

@ -0,0 +1 @@
export declare function not(pred: Function, thisArg: any): Function;

11
node_modules/rxjs/util/not.js generated vendored Normal file
View File

@ -0,0 +1,11 @@
"use strict";
function not(pred, thisArg) {
function notPred() {
return !(notPred.pred.apply(notPred.thisArg, arguments));
}
notPred.pred = pred;
notPred.thisArg = thisArg;
return notPred;
}
exports.not = not;
//# sourceMappingURL=not.js.map

1
node_modules/rxjs/util/not.js.map generated vendored Normal file
View File

@ -0,0 +1 @@
{"version":3,"file":"not.js","sourceRoot":"","sources":["../../../src/util/not.ts"],"names":[],"mappings":";AAAA,aAAoB,IAAc,EAAE,OAAY;IAC9C;QACE,MAAM,CAAC,CAAC,CAAQ,OAAQ,CAAC,IAAI,CAAC,KAAK,CAAQ,OAAQ,CAAC,OAAO,EAAE,SAAS,CAAC,CAAC,CAAC;IAC3E,CAAC;IACM,OAAQ,CAAC,IAAI,GAAG,IAAI,CAAC;IACrB,OAAQ,CAAC,OAAO,GAAG,OAAO,CAAC;IAClC,MAAM,CAAC,OAAO,CAAC;AACjB,CAAC;AAPe,WAAG,MAOlB,CAAA"}

1
node_modules/rxjs/util/root.d.ts generated vendored Normal file
View File

@ -0,0 +1 @@
export declare let root: any;

18
node_modules/rxjs/util/root.js generated vendored Normal file
View File

@ -0,0 +1,18 @@
"use strict";
var objectTypes = {
'boolean': false,
'function': true,
'object': true,
'number': false,
'string': false,
'undefined': false
};
exports.root = (objectTypes[typeof self] && self) || (objectTypes[typeof window] && window);
/* tslint:disable:no-unused-variable */
var freeExports = objectTypes[typeof exports] && exports && !exports.nodeType && exports;
var freeModule = objectTypes[typeof module] && module && !module.nodeType && module;
var freeGlobal = objectTypes[typeof global] && global;
if (freeGlobal && (freeGlobal.global === freeGlobal || freeGlobal.window === freeGlobal)) {
exports.root = freeGlobal;
}
//# sourceMappingURL=root.js.map

1
node_modules/rxjs/util/root.js.map generated vendored Normal file
View File

@ -0,0 +1 @@
{"version":3,"file":"root.js","sourceRoot":"","sources":["../../../src/util/root.ts"],"names":[],"mappings":";AAAA,IAAI,WAAW,GAAG;IAChB,SAAS,EAAE,KAAK;IAChB,UAAU,EAAE,IAAI;IAChB,QAAQ,EAAE,IAAI;IACd,QAAQ,EAAE,KAAK;IACf,QAAQ,EAAE,KAAK;IACf,WAAW,EAAE,KAAK;CACnB,CAAC;AAaS,YAAI,GAAQ,CAAC,WAAW,CAAC,OAAO,IAAI,CAAC,IAAI,IAAI,CAAC,IAAI,CAAC,WAAW,CAAC,OAAO,MAAM,CAAC,IAAI,MAAM,CAAC,CAAC;AAEpG,uCAAuC;AACvC,IAAI,WAAW,GAAG,WAAW,CAAC,OAAO,OAAO,CAAC,IAAI,OAAO,IAAI,CAAC,OAAO,CAAC,QAAQ,IAAI,OAAO,CAAC;AACzF,IAAI,UAAU,GAAG,WAAW,CAAC,OAAO,MAAM,CAAC,IAAI,MAAM,IAAI,CAAC,MAAM,CAAC,QAAQ,IAAI,MAAM,CAAC;AACpF,IAAI,UAAU,GAAG,WAAW,CAAC,OAAO,MAAM,CAAC,IAAI,MAAM,CAAC;AAEtD,EAAE,CAAC,CAAC,UAAU,IAAI,CAAC,UAAU,CAAC,MAAM,KAAK,UAAU,IAAI,UAAU,CAAC,MAAM,KAAK,UAAU,CAAC,CAAC,CAAC,CAAC;IACzF,YAAI,GAAG,UAAU,CAAC;AACpB,CAAC"}

3
node_modules/rxjs/util/subscribeToResult.d.ts generated vendored Normal file
View File

@ -0,0 +1,3 @@
import { Subscription } from '../Subscription';
import { OuterSubscriber } from '../OuterSubscriber';
export declare function subscribeToResult<T, R>(outerSubscriber: OuterSubscriber<T, R>, result: any, outerValue?: T, outerIndex?: number): Subscription;

70
node_modules/rxjs/util/subscribeToResult.js generated vendored Normal file
View File

@ -0,0 +1,70 @@
"use strict";
var root_1 = require('./root');
var isArray_1 = require('./isArray');
var isPromise_1 = require('./isPromise');
var Observable_1 = require('../Observable');
var SymbolShim_1 = require('../util/SymbolShim');
var InnerSubscriber_1 = require('../InnerSubscriber');
function subscribeToResult(outerSubscriber, result, outerValue, outerIndex) {
var destination = new InnerSubscriber_1.InnerSubscriber(outerSubscriber, outerValue, outerIndex);
if (destination.isUnsubscribed) {
return;
}
if (result instanceof Observable_1.Observable) {
if (result._isScalar) {
destination.next(result.value);
destination.complete();
return;
}
else {
return result.subscribe(destination);
}
}
if (isArray_1.isArray(result)) {
for (var i = 0, len = result.length; i < len && !destination.isUnsubscribed; i++) {
destination.next(result[i]);
}
if (!destination.isUnsubscribed) {
destination.complete();
}
}
else if (isPromise_1.isPromise(result)) {
result.then(function (value) {
if (!destination.isUnsubscribed) {
destination.next(value);
destination.complete();
}
}, function (err) { return destination.error(err); })
.then(null, function (err) {
// Escaping the Promise trap: globally throw unhandled errors
root_1.root.setTimeout(function () { throw err; });
});
return destination;
}
else if (typeof result[SymbolShim_1.SymbolShim.iterator] === 'function') {
for (var _i = 0, result_1 = result; _i < result_1.length; _i++) {
var item = result_1[_i];
destination.next(item);
if (destination.isUnsubscribed) {
break;
}
}
if (!destination.isUnsubscribed) {
destination.complete();
}
}
else if (typeof result[SymbolShim_1.SymbolShim.observable] === 'function') {
var obs = result[SymbolShim_1.SymbolShim.observable]();
if (typeof obs.subscribe !== 'function') {
destination.error('invalid observable');
}
else {
return obs.subscribe(new InnerSubscriber_1.InnerSubscriber(outerSubscriber, outerValue, outerIndex));
}
}
else {
destination.error(new TypeError('unknown type returned'));
}
}
exports.subscribeToResult = subscribeToResult;
//# sourceMappingURL=subscribeToResult.js.map

1
node_modules/rxjs/util/subscribeToResult.js.map generated vendored Normal file
View File

@ -0,0 +1 @@
{"version":3,"file":"subscribeToResult.js","sourceRoot":"","sources":["../../../src/util/subscribeToResult.ts"],"names":[],"mappings":"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"}

1
node_modules/rxjs/util/throwError.d.ts generated vendored Normal file
View File

@ -0,0 +1 @@
export declare function throwError(e: any): void;

4
node_modules/rxjs/util/throwError.js generated vendored Normal file
View File

@ -0,0 +1,4 @@
"use strict";
function throwError(e) { throw e; }
exports.throwError = throwError;
//# sourceMappingURL=throwError.js.map

1
node_modules/rxjs/util/throwError.js.map generated vendored Normal file
View File

@ -0,0 +1 @@
{"version":3,"file":"throwError.js","sourceRoot":"","sources":["../../../src/util/throwError.ts"],"names":[],"mappings":";AAAA,oBAA2B,CAAM,IAAI,MAAM,CAAC,CAAC,CAAC,CAAC;AAA/B,kBAAU,aAAqB,CAAA"}

3
node_modules/rxjs/util/toSubscriber.d.ts generated vendored Normal file
View File

@ -0,0 +1,3 @@
import { PartialObserver } from '../Observer';
import { Subscriber } from '../Subscriber';
export declare function toSubscriber<T>(nextOrObserver?: PartialObserver<T> | ((value: T) => void), error?: (error: any) => void, complete?: () => void): Subscriber<T>;

16
node_modules/rxjs/util/toSubscriber.js generated vendored Normal file
View File

@ -0,0 +1,16 @@
"use strict";
var Subscriber_1 = require('../Subscriber');
var rxSubscriber_1 = require('../symbol/rxSubscriber');
function toSubscriber(nextOrObserver, error, complete) {
if (nextOrObserver && typeof nextOrObserver === 'object') {
if (nextOrObserver instanceof Subscriber_1.Subscriber) {
return nextOrObserver;
}
else if (typeof nextOrObserver[rxSubscriber_1.rxSubscriber] === 'function') {
return nextOrObserver[rxSubscriber_1.rxSubscriber]();
}
}
return new Subscriber_1.Subscriber(nextOrObserver, error, complete);
}
exports.toSubscriber = toSubscriber;
//# sourceMappingURL=toSubscriber.js.map

1
node_modules/rxjs/util/toSubscriber.js.map generated vendored Normal file
View File

@ -0,0 +1 @@
{"version":3,"file":"toSubscriber.js","sourceRoot":"","sources":["../../../src/util/toSubscriber.ts"],"names":[],"mappings":";AACA,2BAAyB,eAAe,CAAC,CAAA;AACzC,6BAA2B,wBAAwB,CAAC,CAAA;AAEpD,sBACE,cAA0D,EAC1D,KAA4B,EAC5B,QAAqB;IAErB,EAAE,CAAC,CAAC,cAAc,IAAI,OAAO,cAAc,KAAK,QAAQ,CAAC,CAAC,CAAC;QACzD,EAAE,CAAC,CAAC,cAAc,YAAY,uBAAU,CAAC,CAAC,CAAC;YACzC,MAAM,CAAkB,cAAe,CAAC;QAC1C,CAAC;QAAC,IAAI,CAAC,EAAE,CAAC,CAAC,OAAO,cAAc,CAAC,2BAAY,CAAC,KAAK,UAAU,CAAC,CAAC,CAAC;YAC9D,MAAM,CAAC,cAAc,CAAC,2BAAY,CAAC,EAAE,CAAC;QACxC,CAAC;IACH,CAAC;IAED,MAAM,CAAC,IAAI,uBAAU,CAAC,cAAc,EAAE,KAAK,EAAE,QAAQ,CAAC,CAAC;AACzD,CAAC;AAde,oBAAY,eAc3B,CAAA"}

1
node_modules/rxjs/util/tryCatch.d.ts generated vendored Normal file
View File

@ -0,0 +1 @@
export declare function tryCatch<T extends Function>(fn: T): T;

19
node_modules/rxjs/util/tryCatch.js generated vendored Normal file
View File

@ -0,0 +1,19 @@
"use strict";
var errorObject_1 = require('./errorObject');
var tryCatchTarget;
function tryCatcher() {
try {
return tryCatchTarget.apply(this, arguments);
}
catch (e) {
errorObject_1.errorObject.e = e;
return errorObject_1.errorObject;
}
}
function tryCatch(fn) {
tryCatchTarget = fn;
return tryCatcher;
}
exports.tryCatch = tryCatch;
;
//# sourceMappingURL=tryCatch.js.map

1
node_modules/rxjs/util/tryCatch.js.map generated vendored Normal file
View File

@ -0,0 +1 @@
{"version":3,"file":"tryCatch.js","sourceRoot":"","sources":["../../../src/util/tryCatch.ts"],"names":[],"mappings":";AAAA,4BAA0B,eAAe,CAAC,CAAA;AAE1C,IAAI,cAAwB,CAAC;AAE7B;IACE,IAAI,CAAC;QACH,MAAM,CAAC,cAAc,CAAC,KAAK,CAAC,IAAI,EAAE,SAAS,CAAC,CAAC;IAC/C,CAAE;IAAA,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QACX,yBAAW,CAAC,CAAC,GAAG,CAAC,CAAC;QAClB,MAAM,CAAC,yBAAW,CAAC;IACrB,CAAC;AACH,CAAC;AAED,kBAA6C,EAAK;IAChD,cAAc,GAAG,EAAE,CAAC;IACpB,MAAM,CAAM,UAAU,CAAC;AACzB,CAAC;AAHe,gBAAQ,WAGvB,CAAA;AAAA,CAAC"}