new license file version [CI SKIP]
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
const debug = require('debug')('release-it:shell-stub');
|
||||
const Shell = require('../../lib/shell');
|
||||
|
||||
class ShellStub extends Shell {
|
||||
exec(command) {
|
||||
if (/^(npm (ping|publish|show)|git fetch)/.test(command)) {
|
||||
debug(command);
|
||||
return Promise.resolve();
|
||||
}
|
||||
if (/^npm whoami/.test(command)) {
|
||||
debug(command);
|
||||
return Promise.resolve('john');
|
||||
}
|
||||
if (/^npm access/.test(command)) {
|
||||
debug(command);
|
||||
return Promise.resolve(JSON.stringify({ john: ['write'] }));
|
||||
}
|
||||
return super.exec(...arguments);
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = ShellStub;
|
||||
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"name": "@types/cacheable-request",
|
||||
"version": "6.0.3",
|
||||
"description": "TypeScript definitions for cacheable-request",
|
||||
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/cacheable-request",
|
||||
"license": "MIT",
|
||||
"contributors": [
|
||||
{
|
||||
"name": "BendingBender",
|
||||
"url": "https://github.com/BendingBender",
|
||||
"githubUsername": "BendingBender"
|
||||
},
|
||||
{
|
||||
"name": "Paul Melnikow",
|
||||
"url": "https://github.com/paulmelnikow",
|
||||
"githubUsername": "paulmelnikow"
|
||||
}
|
||||
],
|
||||
"main": "",
|
||||
"types": "index.d.ts",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
|
||||
"directory": "types/cacheable-request"
|
||||
},
|
||||
"scripts": {},
|
||||
"dependencies": {
|
||||
"@types/http-cache-semantics": "*",
|
||||
"@types/keyv": "^3.1.4",
|
||||
"@types/node": "*",
|
||||
"@types/responselike": "^1.0.0"
|
||||
},
|
||||
"typesPublisherContentHash": "9345f1216c9d26f9046880c34f6329b2874405d68cf13d1f1f771fbb4d96549f",
|
||||
"typeScriptVersion": "4.1"
|
||||
}
|
||||
@@ -0,0 +1,104 @@
|
||||
/** PURE_IMPORTS_START PURE_IMPORTS_END */
|
||||
export { audit } from './audit';
|
||||
export { auditTime } from './auditTime';
|
||||
export { buffer } from './buffer';
|
||||
export { bufferCount } from './bufferCount';
|
||||
export { bufferTime } from './bufferTime';
|
||||
export { bufferToggle } from './bufferToggle';
|
||||
export { bufferWhen } from './bufferWhen';
|
||||
export { catchError } from './catchError';
|
||||
export { combineAll } from './combineAll';
|
||||
export { combineLatest } from './combineLatest';
|
||||
export { concat } from './concat';
|
||||
export { concatAll } from './concatAll';
|
||||
export { concatMap } from './concatMap';
|
||||
export { concatMapTo } from './concatMapTo';
|
||||
export { count } from './count';
|
||||
export { debounce } from './debounce';
|
||||
export { debounceTime } from './debounceTime';
|
||||
export { defaultIfEmpty } from './defaultIfEmpty';
|
||||
export { delay } from './delay';
|
||||
export { delayWhen } from './delayWhen';
|
||||
export { dematerialize } from './dematerialize';
|
||||
export { distinct } from './distinct';
|
||||
export { distinctUntilChanged } from './distinctUntilChanged';
|
||||
export { distinctUntilKeyChanged } from './distinctUntilKeyChanged';
|
||||
export { elementAt } from './elementAt';
|
||||
export { every } from './every';
|
||||
export { exhaust } from './exhaust';
|
||||
export { exhaustMap } from './exhaustMap';
|
||||
export { expand } from './expand';
|
||||
export { filter } from './filter';
|
||||
export { finalize } from './finalize';
|
||||
export { find } from './find';
|
||||
export { findIndex } from './findIndex';
|
||||
export { first } from './first';
|
||||
export { groupBy } from './groupBy';
|
||||
export { ignoreElements } from './ignoreElements';
|
||||
export { isEmpty } from './isEmpty';
|
||||
export { last } from './last';
|
||||
export { map } from './map';
|
||||
export { mapTo } from './mapTo';
|
||||
export { materialize } from './materialize';
|
||||
export { max } from './max';
|
||||
export { merge } from './merge';
|
||||
export { mergeAll } from './mergeAll';
|
||||
export { mergeMap } from './mergeMap';
|
||||
export { mergeMap as flatMap } from './mergeMap';
|
||||
export { mergeMapTo } from './mergeMapTo';
|
||||
export { mergeScan } from './mergeScan';
|
||||
export { min } from './min';
|
||||
export { multicast } from './multicast';
|
||||
export { observeOn } from './observeOn';
|
||||
export { onErrorResumeNext } from './onErrorResumeNext';
|
||||
export { pairwise } from './pairwise';
|
||||
export { partition } from './partition';
|
||||
export { pluck } from './pluck';
|
||||
export { publish } from './publish';
|
||||
export { publishBehavior } from './publishBehavior';
|
||||
export { publishLast } from './publishLast';
|
||||
export { publishReplay } from './publishReplay';
|
||||
export { race } from './race';
|
||||
export { reduce } from './reduce';
|
||||
export { repeat } from './repeat';
|
||||
export { repeatWhen } from './repeatWhen';
|
||||
export { retry } from './retry';
|
||||
export { retryWhen } from './retryWhen';
|
||||
export { refCount } from './refCount';
|
||||
export { sample } from './sample';
|
||||
export { sampleTime } from './sampleTime';
|
||||
export { scan } from './scan';
|
||||
export { sequenceEqual } from './sequenceEqual';
|
||||
export { share } from './share';
|
||||
export { shareReplay } from './shareReplay';
|
||||
export { single } from './single';
|
||||
export { skip } from './skip';
|
||||
export { skipLast } from './skipLast';
|
||||
export { skipUntil } from './skipUntil';
|
||||
export { skipWhile } from './skipWhile';
|
||||
export { startWith } from './startWith';
|
||||
export { subscribeOn } from './subscribeOn';
|
||||
export { switchAll } from './switchAll';
|
||||
export { switchMap } from './switchMap';
|
||||
export { switchMapTo } from './switchMapTo';
|
||||
export { take } from './take';
|
||||
export { takeLast } from './takeLast';
|
||||
export { takeUntil } from './takeUntil';
|
||||
export { takeWhile } from './takeWhile';
|
||||
export { tap } from './tap';
|
||||
export { throttle } from './throttle';
|
||||
export { throttleTime } from './throttleTime';
|
||||
export { timeInterval } from './timeInterval';
|
||||
export { timeout } from './timeout';
|
||||
export { timeoutWith } from './timeoutWith';
|
||||
export { timestamp } from './timestamp';
|
||||
export { toArray } from './toArray';
|
||||
export { window } from './window';
|
||||
export { windowCount } from './windowCount';
|
||||
export { windowTime } from './windowTime';
|
||||
export { windowToggle } from './windowToggle';
|
||||
export { windowWhen } from './windowWhen';
|
||||
export { withLatestFrom } from './withLatestFrom';
|
||||
export { zip } from './zip';
|
||||
export { zipAll } from './zipAll';
|
||||
//# sourceMappingURL=index.js.map
|
||||
@@ -0,0 +1,33 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.default = isRFC3339;
|
||||
|
||||
var _assertString = _interopRequireDefault(require("./util/assertString"));
|
||||
|
||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||||
|
||||
/* Based on https://tools.ietf.org/html/rfc3339#section-5.6 */
|
||||
var dateFullYear = /[0-9]{4}/;
|
||||
var dateMonth = /(0[1-9]|1[0-2])/;
|
||||
var dateMDay = /([12]\d|0[1-9]|3[01])/;
|
||||
var timeHour = /([01][0-9]|2[0-3])/;
|
||||
var timeMinute = /[0-5][0-9]/;
|
||||
var timeSecond = /([0-5][0-9]|60)/;
|
||||
var timeSecFrac = /(\.[0-9]+)?/;
|
||||
var timeNumOffset = new RegExp("[-+]".concat(timeHour.source, ":").concat(timeMinute.source));
|
||||
var timeOffset = new RegExp("([zZ]|".concat(timeNumOffset.source, ")"));
|
||||
var partialTime = new RegExp("".concat(timeHour.source, ":").concat(timeMinute.source, ":").concat(timeSecond.source).concat(timeSecFrac.source));
|
||||
var fullDate = new RegExp("".concat(dateFullYear.source, "-").concat(dateMonth.source, "-").concat(dateMDay.source));
|
||||
var fullTime = new RegExp("".concat(partialTime.source).concat(timeOffset.source));
|
||||
var rfc3339 = new RegExp("".concat(fullDate.source, "[ tT]").concat(fullTime.source));
|
||||
|
||||
function isRFC3339(str) {
|
||||
(0, _assertString.default)(str);
|
||||
return rfc3339.test(str);
|
||||
}
|
||||
|
||||
module.exports = exports.default;
|
||||
module.exports.default = exports.default;
|
||||
@@ -0,0 +1,61 @@
|
||||
import { Observable } from '../Observable';
|
||||
import { ConnectableObservable } from '../observable/ConnectableObservable';
|
||||
import { UnaryFunction } from '../types';
|
||||
/**
|
||||
* Returns a connectable observable sequence that shares a single subscription to the
|
||||
* underlying sequence containing only the last notification.
|
||||
*
|
||||
* 
|
||||
*
|
||||
* Similar to {@link publish}, but it waits until the source observable completes and stores
|
||||
* the last emitted value.
|
||||
* Similarly to {@link publishReplay} and {@link publishBehavior}, this keeps storing the last
|
||||
* value even if it has no more subscribers. If subsequent subscriptions happen, they will
|
||||
* immediately get that last stored value and complete.
|
||||
*
|
||||
* ## Example
|
||||
*
|
||||
* ```ts
|
||||
* import { interval } from 'rxjs';
|
||||
* import { publishLast, tap, take } from 'rxjs/operators';
|
||||
*
|
||||
* const connectable =
|
||||
* interval(1000)
|
||||
* .pipe(
|
||||
* tap(x => console.log("side effect", x)),
|
||||
* take(3),
|
||||
* publishLast());
|
||||
*
|
||||
* connectable.subscribe(
|
||||
* x => console.log( "Sub. A", x),
|
||||
* err => console.log("Sub. A Error", err),
|
||||
* () => console.log( "Sub. A Complete"));
|
||||
*
|
||||
* connectable.subscribe(
|
||||
* x => console.log( "Sub. B", x),
|
||||
* err => console.log("Sub. B Error", err),
|
||||
* () => console.log( "Sub. B Complete"));
|
||||
*
|
||||
* connectable.connect();
|
||||
*
|
||||
* // Results:
|
||||
* // "side effect 0"
|
||||
* // "side effect 1"
|
||||
* // "side effect 2"
|
||||
* // "Sub. A 2"
|
||||
* // "Sub. B 2"
|
||||
* // "Sub. A Complete"
|
||||
* // "Sub. B Complete"
|
||||
* ```
|
||||
*
|
||||
* @see {@link ConnectableObservable}
|
||||
* @see {@link publish}
|
||||
* @see {@link publishReplay}
|
||||
* @see {@link publishBehavior}
|
||||
*
|
||||
* @return {ConnectableObservable} An observable sequence that contains the elements of a
|
||||
* sequence produced by multicasting the source sequence.
|
||||
* @method publishLast
|
||||
* @owner Observable
|
||||
*/
|
||||
export declare function publishLast<T>(): UnaryFunction<Observable<T>, ConnectableObservable<T>>;
|
||||
@@ -0,0 +1,4 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
require("rxjs-compat/add/observable/interval");
|
||||
//# sourceMappingURL=interval.js.map
|
||||
@@ -0,0 +1 @@
|
||||
export * from 'rxjs-compat/operator/delay';
|
||||
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"VirtualTimeScheduler.js","sources":["../../../src/internal/scheduler/VirtualTimeScheduler.ts"],"names":[],"mappings":"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"}
|
||||
@@ -0,0 +1,38 @@
|
||||
/** PURE_IMPORTS_START tslib,_Subscriber,_Notification PURE_IMPORTS_END */
|
||||
import * as tslib_1 from "tslib";
|
||||
import { Subscriber } from '../Subscriber';
|
||||
import { Notification } from '../Notification';
|
||||
export function materialize() {
|
||||
return function materializeOperatorFunction(source) {
|
||||
return source.lift(new MaterializeOperator());
|
||||
};
|
||||
}
|
||||
var MaterializeOperator = /*@__PURE__*/ (function () {
|
||||
function MaterializeOperator() {
|
||||
}
|
||||
MaterializeOperator.prototype.call = function (subscriber, source) {
|
||||
return source.subscribe(new MaterializeSubscriber(subscriber));
|
||||
};
|
||||
return MaterializeOperator;
|
||||
}());
|
||||
var MaterializeSubscriber = /*@__PURE__*/ (function (_super) {
|
||||
tslib_1.__extends(MaterializeSubscriber, _super);
|
||||
function MaterializeSubscriber(destination) {
|
||||
return _super.call(this, destination) || this;
|
||||
}
|
||||
MaterializeSubscriber.prototype._next = function (value) {
|
||||
this.destination.next(Notification.createNext(value));
|
||||
};
|
||||
MaterializeSubscriber.prototype._error = function (err) {
|
||||
var destination = this.destination;
|
||||
destination.next(Notification.createError(err));
|
||||
destination.complete();
|
||||
};
|
||||
MaterializeSubscriber.prototype._complete = function () {
|
||||
var destination = this.destination;
|
||||
destination.next(Notification.createComplete());
|
||||
destination.complete();
|
||||
};
|
||||
return MaterializeSubscriber;
|
||||
}(Subscriber));
|
||||
//# sourceMappingURL=materialize.js.map
|
||||
@@ -0,0 +1 @@
|
||||
module.exports={A:{A:{"2":"G A B BC","4":"J E F"},B:{"2":"C K L H M N O","8":"P Q R S T U V W X Y Z a b c d f g h i j k l m n o p q r s D t"},C:{"8":"0 1 2 3 4 5 6 7 8 9 CC tB I u J E F G A B C K L H M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB e lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d f g h i j k l m n o p q r s D t xB yB DC EC"},D:{"8":"0 1 2 3 4 5 6 7 8 9 I u J E F G A B C K L H M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB e lB mB nB oB pB P Q R S T U V W X Y Z a b c d f g h i j k l m n o p q r s D t xB yB FC"},E:{"8":"I u J E F G A B C K L H GC zB HC IC JC KC 0B qB rB 1B LC MC 2B 3B 4B 5B sB 6B 7B 8B NC"},F:{"8":"0 1 2 3 4 5 6 7 8 9 G B C H M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB e lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d OC PC QC RC qB 9B SC rB"},G:{"8":"F zB TC AC UC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC mC 2B 3B 4B 5B sB 6B 7B 8B"},H:{"8":"nC"},I:{"8":"tB I D oC pC qC rC AC sC tC"},J:{"8":"E A"},K:{"8":"A B C e qB 9B rB"},L:{"8":"D"},M:{"8":"D"},N:{"2":"A B"},O:{"8":"uC"},P:{"8":"I vC wC xC yC zC 0B 0C 1C 2C 3C 4C sB 5C 6C 7C"},Q:{"8":"1B"},R:{"8":"8C"},S:{"8":"9C"}},B:7,C:"XHTML+SMIL animation"};
|
||||
@@ -0,0 +1,4 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
require("rxjs-compat/add/operator/repeat");
|
||||
//# sourceMappingURL=repeat.js.map
|
||||
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"combineLatest.js","sources":["../../../src/internal/operators/combineLatest.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,MAAM,iBAAiB,CAAC;AAC1C,OAAO,EAAE,qBAAqB,EAAE,MAAM,6BAA6B,CAAC;AACpE,OAAO,EAAE,IAAI,EAAE,MAAM,oBAAoB,CAAC;AAI1C,IAAM,IAAI,GAAG,EAAE,CAAC;AAoChB,MAAM,UAAU,aAAa;IAAO,qBAE+C;SAF/C,UAE+C,EAF/C,qBAE+C,EAF/C,IAE+C;QAF/C,gCAE+C;;IACjF,IAAI,OAAO,GAAiC,IAAI,CAAC;IACjD,IAAI,OAAO,WAAW,CAAC,WAAW,CAAC,MAAM,GAAG,CAAC,CAAC,KAAK,UAAU,EAAE;QAC7D,OAAO,GAAiC,WAAW,CAAC,GAAG,EAAE,CAAC;KAC3D;IAID,IAAI,WAAW,CAAC,MAAM,KAAK,CAAC,IAAI,OAAO,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,EAAE;QACvD,WAAW,GAAS,WAAW,CAAC,CAAC,CAAE,CAAC,KAAK,EAAE,CAAC;KAC7C;IAED,OAAO,UAAC,MAAqB,IAAK,OAAA,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,EAAE,MAAM,SAAK,WAAW,EAAE,EAAE,IAAI,qBAAqB,CAAC,OAAO,CAAC,CAAC,EAApF,CAAoF,CAAC;AACzH,CAAC"}
|
||||
@@ -0,0 +1,38 @@
|
||||
{
|
||||
"name": "is-ci",
|
||||
"version": "2.0.0",
|
||||
"description": "Detect if the current environment is a CI server",
|
||||
"bin": "bin.js",
|
||||
"main": "index.js",
|
||||
"dependencies": {
|
||||
"ci-info": "^2.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"clear-module": "^3.0.0",
|
||||
"standard": "^12.0.1"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "standard && node test.js"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/watson/is-ci.git"
|
||||
},
|
||||
"keywords": [
|
||||
"ci",
|
||||
"continuous",
|
||||
"integration",
|
||||
"test",
|
||||
"detect"
|
||||
],
|
||||
"author": "Thomas Watson Steen <w@tson.dk> (https://twitter.com/wa7son)",
|
||||
"license": "MIT",
|
||||
"bugs": {
|
||||
"url": "https://github.com/watson/is-ci/issues"
|
||||
},
|
||||
"homepage": "https://github.com/watson/is-ci",
|
||||
"coordinates": [
|
||||
55.778272,
|
||||
12.593116
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"findIndex.js","sources":["../../../src/internal/operators/findIndex.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,iBAAiB,EAAE,MAAM,mBAAmB,CAAC;AA0CtD,MAAM,UAAU,SAAS,CAAI,SAAsE,EACtE,OAAa;IACxC,OAAO,CAAC,MAAqB,EAAE,EAAE,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,iBAAiB,CAAC,SAAS,EAAE,MAAM,EAAE,IAAI,EAAE,OAAO,CAAC,CAAoB,CAAC;AAC5H,CAAC"}
|
||||
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"webSocket.js","sources":["../../../../src/internal/observable/dom/webSocket.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAA0B,MAAM,oBAAoB,CAAC;AAyJ9E,MAAM,UAAU,SAAS,CAAI,iBAAqD;IAChF,OAAO,IAAI,gBAAgB,CAAI,iBAAiB,CAAC,CAAC;AACpD,CAAC"}
|
||||
@@ -0,0 +1 @@
|
||||
module.exports={A:{A:{"1":"A B","2":"J E F G BC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d f g h i j k l m n o p q r s D t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I u J E F G A B C K L H M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB e lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d f g h i j k l m n o p q r s D t xB yB","2":"CC tB DC EC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L H M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB e lB mB nB oB pB P Q R S T U V W X Y Z a b c d f g h i j k l m n o p q r s D t xB yB FC","2":"I u J E F G"},E:{"1":"B C K L H 0B qB rB 1B LC MC 2B 3B 4B 5B sB 6B 7B 8B NC","2":"I GC zB","132":"u J E F G A HC IC JC KC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C H M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB e lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d PC QC RC qB 9B SC rB","2":"G OC"},G:{"1":"bC cC dC eC fC gC hC iC jC kC lC mC 2B 3B 4B 5B sB 6B 7B 8B","2":"zB","132":"F TC AC UC VC WC XC YC ZC aC"},H:{"516":"nC"},I:{"1":"D tC","2":"tB oC pC qC","132":"I rC AC sC"},J:{"1":"A","132":"E"},K:{"1":"A B C e qB 9B rB"},L:{"1":"D"},M:{"1":"D"},N:{"260":"A B"},O:{"1":"uC"},P:{"1":"I vC wC xC yC zC 0B 0C 1C 2C 3C 4C sB 5C 6C 7C"},Q:{"1":"1B"},R:{"1":"8C"},S:{"132":"9C"}},B:1,C:"Form validation"};
|
||||
@@ -0,0 +1,64 @@
|
||||
import { Observable } from '../Observable';
|
||||
import { Operator } from '../Operator';
|
||||
import { Subscriber } from '../Subscriber';
|
||||
import { MonoTypeOperatorFunction, TeardownLogic } from '../types';
|
||||
|
||||
/**
|
||||
* Returns an Observable that skips all items emitted by the source Observable as long as a specified condition holds
|
||||
* true, but emits all further source items as soon as the condition becomes false.
|
||||
*
|
||||
* 
|
||||
*
|
||||
* @param {Function} predicate - A function to test each item emitted from the source Observable.
|
||||
* @return {Observable<T>} An Observable that begins emitting items emitted by the source Observable when the
|
||||
* specified predicate becomes false.
|
||||
* @method skipWhile
|
||||
* @owner Observable
|
||||
*/
|
||||
export function skipWhile<T>(predicate: (value: T, index: number) => boolean): MonoTypeOperatorFunction<T> {
|
||||
return (source: Observable<T>) => source.lift(new SkipWhileOperator(predicate));
|
||||
}
|
||||
|
||||
class SkipWhileOperator<T> implements Operator<T, T> {
|
||||
constructor(private predicate: (value: T, index: number) => boolean) {
|
||||
}
|
||||
|
||||
call(subscriber: Subscriber<T>, source: any): TeardownLogic {
|
||||
return source.subscribe(new SkipWhileSubscriber(subscriber, this.predicate));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* We need this JSDoc comment for affecting ESDoc.
|
||||
* @ignore
|
||||
* @extends {Ignored}
|
||||
*/
|
||||
class SkipWhileSubscriber<T> extends Subscriber<T> {
|
||||
private skipping: boolean = true;
|
||||
private index: number = 0;
|
||||
|
||||
constructor(destination: Subscriber<T>,
|
||||
private predicate: (value: T, index: number) => boolean) {
|
||||
super(destination);
|
||||
}
|
||||
|
||||
protected _next(value: T): void {
|
||||
const destination = this.destination;
|
||||
if (this.skipping) {
|
||||
this.tryCallPredicate(value);
|
||||
}
|
||||
|
||||
if (!this.skipping) {
|
||||
destination.next(value);
|
||||
}
|
||||
}
|
||||
|
||||
private tryCallPredicate(value: T): void {
|
||||
try {
|
||||
const result = this.predicate(value, this.index++);
|
||||
this.skipping = Boolean(result);
|
||||
} catch (err) {
|
||||
this.destination.error(err);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
"use strict";
|
||||
function __export(m) {
|
||||
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
|
||||
}
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
__export(require("rxjs-compat/ReplaySubject"));
|
||||
//# sourceMappingURL=ReplaySubject.js.map
|
||||
@@ -0,0 +1,23 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.default = isAfter;
|
||||
|
||||
var _assertString = _interopRequireDefault(require("./util/assertString"));
|
||||
|
||||
var _toDate = _interopRequireDefault(require("./toDate"));
|
||||
|
||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||||
|
||||
function isAfter(str) {
|
||||
var date = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : String(new Date());
|
||||
(0, _assertString.default)(str);
|
||||
var comparison = (0, _toDate.default)(date);
|
||||
var original = (0, _toDate.default)(str);
|
||||
return !!(original && comparison && original > comparison);
|
||||
}
|
||||
|
||||
module.exports = exports.default;
|
||||
module.exports.default = exports.default;
|
||||
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"if.js","sources":["../../src/add/observable/if.ts"],"names":[],"mappings":";;AAAA,yCAAuC"}
|
||||
@@ -0,0 +1,130 @@
|
||||
import Stats from '../Stats';
|
||||
import { Scope } from './utils/scope';
|
||||
import Stylesheet from './css/Stylesheet';
|
||||
import Fragment from './nodes/Fragment';
|
||||
import { Ast, CompileOptions, Var, Warning, CssResult } from '../interfaces';
|
||||
import TemplateScope from './nodes/shared/TemplateScope';
|
||||
import Slot from './nodes/Slot';
|
||||
import { Node, ImportDeclaration, Identifier } from 'estree';
|
||||
import Element from './nodes/Element';
|
||||
interface ComponentOptions {
|
||||
namespace?: string;
|
||||
tag?: string;
|
||||
immutable?: boolean;
|
||||
accessors?: boolean;
|
||||
preserveWhitespace?: boolean;
|
||||
}
|
||||
export default class Component {
|
||||
stats: Stats;
|
||||
warnings: Warning[];
|
||||
ignores: Set<string>;
|
||||
ignore_stack: Array<Set<string>>;
|
||||
ast: Ast;
|
||||
original_ast: Ast;
|
||||
source: string;
|
||||
name: Identifier;
|
||||
compile_options: CompileOptions;
|
||||
fragment: Fragment;
|
||||
module_scope: Scope;
|
||||
instance_scope: Scope;
|
||||
instance_scope_map: WeakMap<Node, Scope>;
|
||||
component_options: ComponentOptions;
|
||||
namespace: string;
|
||||
tag: string;
|
||||
accessors: boolean;
|
||||
vars: Var[];
|
||||
var_lookup: Map<string, Var>;
|
||||
imports: ImportDeclaration[];
|
||||
hoistable_nodes: Set<Node>;
|
||||
node_for_declaration: Map<string, Node>;
|
||||
partly_hoisted: Array<(Node | Node[])>;
|
||||
fully_hoisted: Array<(Node | Node[])>;
|
||||
reactive_declarations: Array<{
|
||||
assignees: Set<string>;
|
||||
dependencies: Set<string>;
|
||||
node: Node;
|
||||
declaration: Node;
|
||||
}>;
|
||||
reactive_declaration_nodes: Set<Node>;
|
||||
has_reactive_assignments: boolean;
|
||||
injected_reactive_declaration_vars: Set<string>;
|
||||
helpers: Map<string, Identifier>;
|
||||
globals: Map<string, Identifier>;
|
||||
indirect_dependencies: Map<string, Set<string>>;
|
||||
file: string;
|
||||
locate: (c: number) => {
|
||||
line: number;
|
||||
column: number;
|
||||
};
|
||||
elements: Element[];
|
||||
stylesheet: Stylesheet;
|
||||
aliases: Map<string, Identifier>;
|
||||
used_names: Set<string>;
|
||||
globally_used_names: Set<string>;
|
||||
slots: Map<string, Slot>;
|
||||
slot_outlets: Set<string>;
|
||||
constructor(ast: Ast, source: string, name: string, compile_options: CompileOptions, stats: Stats, warnings: Warning[]);
|
||||
add_var(variable: Var): void;
|
||||
add_reference(name: string): void;
|
||||
alias(name: string): Identifier;
|
||||
apply_stylesheet(element: Element): void;
|
||||
global(name: string): Identifier;
|
||||
generate(result?: {
|
||||
js: Node[];
|
||||
css: CssResult;
|
||||
}): {
|
||||
js: any;
|
||||
css: any;
|
||||
ast: Ast;
|
||||
warnings: Warning[];
|
||||
vars: {
|
||||
name: string;
|
||||
export_name: string;
|
||||
injected: boolean;
|
||||
module: boolean;
|
||||
mutated: boolean;
|
||||
reassigned: boolean;
|
||||
referenced: boolean;
|
||||
writable: boolean;
|
||||
referenced_from_script: boolean;
|
||||
}[];
|
||||
stats: {
|
||||
timings: {
|
||||
total: number;
|
||||
};
|
||||
};
|
||||
};
|
||||
get_unique_name(name: string, scope?: Scope): Identifier;
|
||||
get_unique_name_maker(): (name: string) => Identifier;
|
||||
error(pos: {
|
||||
start: number;
|
||||
end: number;
|
||||
}, e: {
|
||||
code: string;
|
||||
message: string;
|
||||
}): void;
|
||||
warn(pos: {
|
||||
start: number;
|
||||
end: number;
|
||||
}, warning: {
|
||||
code: string;
|
||||
message: string;
|
||||
}): void;
|
||||
extract_imports(node: any): void;
|
||||
extract_exports(node: any): any;
|
||||
extract_javascript(script: any): any;
|
||||
walk_module_js(): void;
|
||||
walk_instance_js_pre_template(): void;
|
||||
walk_instance_js_post_template(): void;
|
||||
post_template_walk(): void;
|
||||
track_references_and_mutations(): void;
|
||||
warn_on_undefined_store_value_references(node: Node, parent: Node, prop: string, scope: Scope): void;
|
||||
loop_protect(node: any, scope: Scope, timeout: number): Node | null;
|
||||
rewrite_props(get_insert: (variable: Var) => Node[]): void;
|
||||
hoist_instance_declarations(): void;
|
||||
extract_reactive_declarations(): void;
|
||||
warn_if_undefined(name: string, node: any, template_scope: TemplateScope): void;
|
||||
push_ignores(ignores: any): void;
|
||||
pop_ignores(): void;
|
||||
}
|
||||
export {};
|
||||
@@ -0,0 +1 @@
|
||||
import 'rxjs-compat/add/operator/skipUntil';
|
||||
@@ -0,0 +1,229 @@
|
||||
"use strict";
|
||||
var __extends = (this && this.__extends) || (function () {
|
||||
var extendStatics = function (d, b) {
|
||||
extendStatics = Object.setPrototypeOf ||
|
||||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
||||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
||||
return extendStatics(d, b);
|
||||
}
|
||||
return function (d, b) {
|
||||
extendStatics(d, b);
|
||||
function __() { this.constructor = d; }
|
||||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
var fromArray_1 = require("./fromArray");
|
||||
var isArray_1 = require("../util/isArray");
|
||||
var Subscriber_1 = require("../Subscriber");
|
||||
var iterator_1 = require("../../internal/symbol/iterator");
|
||||
var innerSubscribe_1 = require("../innerSubscribe");
|
||||
function zip() {
|
||||
var observables = [];
|
||||
for (var _i = 0; _i < arguments.length; _i++) {
|
||||
observables[_i] = arguments[_i];
|
||||
}
|
||||
var resultSelector = observables[observables.length - 1];
|
||||
if (typeof resultSelector === 'function') {
|
||||
observables.pop();
|
||||
}
|
||||
return fromArray_1.fromArray(observables, undefined).lift(new ZipOperator(resultSelector));
|
||||
}
|
||||
exports.zip = zip;
|
||||
var ZipOperator = (function () {
|
||||
function ZipOperator(resultSelector) {
|
||||
this.resultSelector = resultSelector;
|
||||
}
|
||||
ZipOperator.prototype.call = function (subscriber, source) {
|
||||
return source.subscribe(new ZipSubscriber(subscriber, this.resultSelector));
|
||||
};
|
||||
return ZipOperator;
|
||||
}());
|
||||
exports.ZipOperator = ZipOperator;
|
||||
var ZipSubscriber = (function (_super) {
|
||||
__extends(ZipSubscriber, _super);
|
||||
function ZipSubscriber(destination, resultSelector, values) {
|
||||
if (values === void 0) { values = Object.create(null); }
|
||||
var _this = _super.call(this, destination) || this;
|
||||
_this.resultSelector = resultSelector;
|
||||
_this.iterators = [];
|
||||
_this.active = 0;
|
||||
_this.resultSelector = (typeof resultSelector === 'function') ? resultSelector : undefined;
|
||||
return _this;
|
||||
}
|
||||
ZipSubscriber.prototype._next = function (value) {
|
||||
var iterators = this.iterators;
|
||||
if (isArray_1.isArray(value)) {
|
||||
iterators.push(new StaticArrayIterator(value));
|
||||
}
|
||||
else if (typeof value[iterator_1.iterator] === 'function') {
|
||||
iterators.push(new StaticIterator(value[iterator_1.iterator]()));
|
||||
}
|
||||
else {
|
||||
iterators.push(new ZipBufferIterator(this.destination, this, value));
|
||||
}
|
||||
};
|
||||
ZipSubscriber.prototype._complete = function () {
|
||||
var iterators = this.iterators;
|
||||
var len = iterators.length;
|
||||
this.unsubscribe();
|
||||
if (len === 0) {
|
||||
this.destination.complete();
|
||||
return;
|
||||
}
|
||||
this.active = len;
|
||||
for (var i = 0; i < len; i++) {
|
||||
var iterator = iterators[i];
|
||||
if (iterator.stillUnsubscribed) {
|
||||
var destination = this.destination;
|
||||
destination.add(iterator.subscribe());
|
||||
}
|
||||
else {
|
||||
this.active--;
|
||||
}
|
||||
}
|
||||
};
|
||||
ZipSubscriber.prototype.notifyInactive = function () {
|
||||
this.active--;
|
||||
if (this.active === 0) {
|
||||
this.destination.complete();
|
||||
}
|
||||
};
|
||||
ZipSubscriber.prototype.checkIterators = function () {
|
||||
var iterators = this.iterators;
|
||||
var len = iterators.length;
|
||||
var destination = this.destination;
|
||||
for (var i = 0; i < len; i++) {
|
||||
var iterator = iterators[i];
|
||||
if (typeof iterator.hasValue === 'function' && !iterator.hasValue()) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
var shouldComplete = false;
|
||||
var args = [];
|
||||
for (var i = 0; i < len; i++) {
|
||||
var iterator = iterators[i];
|
||||
var result = iterator.next();
|
||||
if (iterator.hasCompleted()) {
|
||||
shouldComplete = true;
|
||||
}
|
||||
if (result.done) {
|
||||
destination.complete();
|
||||
return;
|
||||
}
|
||||
args.push(result.value);
|
||||
}
|
||||
if (this.resultSelector) {
|
||||
this._tryresultSelector(args);
|
||||
}
|
||||
else {
|
||||
destination.next(args);
|
||||
}
|
||||
if (shouldComplete) {
|
||||
destination.complete();
|
||||
}
|
||||
};
|
||||
ZipSubscriber.prototype._tryresultSelector = function (args) {
|
||||
var result;
|
||||
try {
|
||||
result = this.resultSelector.apply(this, args);
|
||||
}
|
||||
catch (err) {
|
||||
this.destination.error(err);
|
||||
return;
|
||||
}
|
||||
this.destination.next(result);
|
||||
};
|
||||
return ZipSubscriber;
|
||||
}(Subscriber_1.Subscriber));
|
||||
exports.ZipSubscriber = ZipSubscriber;
|
||||
var StaticIterator = (function () {
|
||||
function StaticIterator(iterator) {
|
||||
this.iterator = iterator;
|
||||
this.nextResult = iterator.next();
|
||||
}
|
||||
StaticIterator.prototype.hasValue = function () {
|
||||
return true;
|
||||
};
|
||||
StaticIterator.prototype.next = function () {
|
||||
var result = this.nextResult;
|
||||
this.nextResult = this.iterator.next();
|
||||
return result;
|
||||
};
|
||||
StaticIterator.prototype.hasCompleted = function () {
|
||||
var nextResult = this.nextResult;
|
||||
return Boolean(nextResult && nextResult.done);
|
||||
};
|
||||
return StaticIterator;
|
||||
}());
|
||||
var StaticArrayIterator = (function () {
|
||||
function StaticArrayIterator(array) {
|
||||
this.array = array;
|
||||
this.index = 0;
|
||||
this.length = 0;
|
||||
this.length = array.length;
|
||||
}
|
||||
StaticArrayIterator.prototype[iterator_1.iterator] = function () {
|
||||
return this;
|
||||
};
|
||||
StaticArrayIterator.prototype.next = function (value) {
|
||||
var i = this.index++;
|
||||
var array = this.array;
|
||||
return i < this.length ? { value: array[i], done: false } : { value: null, done: true };
|
||||
};
|
||||
StaticArrayIterator.prototype.hasValue = function () {
|
||||
return this.array.length > this.index;
|
||||
};
|
||||
StaticArrayIterator.prototype.hasCompleted = function () {
|
||||
return this.array.length === this.index;
|
||||
};
|
||||
return StaticArrayIterator;
|
||||
}());
|
||||
var ZipBufferIterator = (function (_super) {
|
||||
__extends(ZipBufferIterator, _super);
|
||||
function ZipBufferIterator(destination, parent, observable) {
|
||||
var _this = _super.call(this, destination) || this;
|
||||
_this.parent = parent;
|
||||
_this.observable = observable;
|
||||
_this.stillUnsubscribed = true;
|
||||
_this.buffer = [];
|
||||
_this.isComplete = false;
|
||||
return _this;
|
||||
}
|
||||
ZipBufferIterator.prototype[iterator_1.iterator] = function () {
|
||||
return this;
|
||||
};
|
||||
ZipBufferIterator.prototype.next = function () {
|
||||
var buffer = this.buffer;
|
||||
if (buffer.length === 0 && this.isComplete) {
|
||||
return { value: null, done: true };
|
||||
}
|
||||
else {
|
||||
return { value: buffer.shift(), done: false };
|
||||
}
|
||||
};
|
||||
ZipBufferIterator.prototype.hasValue = function () {
|
||||
return this.buffer.length > 0;
|
||||
};
|
||||
ZipBufferIterator.prototype.hasCompleted = function () {
|
||||
return this.buffer.length === 0 && this.isComplete;
|
||||
};
|
||||
ZipBufferIterator.prototype.notifyComplete = function () {
|
||||
if (this.buffer.length > 0) {
|
||||
this.isComplete = true;
|
||||
this.parent.notifyInactive();
|
||||
}
|
||||
else {
|
||||
this.destination.complete();
|
||||
}
|
||||
};
|
||||
ZipBufferIterator.prototype.notifyNext = function (innerValue) {
|
||||
this.buffer.push(innerValue);
|
||||
this.parent.checkIterators();
|
||||
};
|
||||
ZipBufferIterator.prototype.subscribe = function () {
|
||||
return innerSubscribe_1.innerSubscribe(this.observable, new innerSubscribe_1.SimpleInnerSubscriber(this));
|
||||
};
|
||||
return ZipBufferIterator;
|
||||
}(innerSubscribe_1.SimpleOuterSubscriber));
|
||||
//# sourceMappingURL=zip.js.map
|
||||
@@ -0,0 +1 @@
|
||||
module.exports={A:{A:{"644":"J E F G BC","772":"A B"},B:{"1":"O P Q R S T U V W X Y Z a b c d f g h i j k l m n o p q r s D t","260":"C K L H M N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I u J E F G A B C K L H M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB e lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d f g h i j k l m n o p q r s D t xB yB DC EC","8":"CC tB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I u J E F G A B C K L H M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB uB ZB vB aB bB cB dB eB fB gB hB iB jB kB e lB mB nB oB pB P Q R S T U V W X Y Z a b c d f g h i j k l m n o p q r s D t xB yB FC"},E:{"1":"I u J E F G A B C K L H GC zB HC IC JC KC 0B qB rB 1B LC MC 2B 3B 4B 5B sB 6B 7B 8B NC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C H M N O v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB e lB mB nB oB pB P Q R wB S T U V W X Y Z a b c d rB","8":"G B OC PC QC RC qB 9B SC"},G:{"1":"mC 2B 3B 4B 5B sB 6B 7B 8B","2":"F zB TC AC UC VC WC XC YC ZC aC bC cC dC eC fC gC hC iC jC kC lC"},H:{"2":"nC"},I:{"2":"tB I oC pC qC rC AC sC tC","1025":"D"},J:{"2":"E A"},K:{"1":"rB","8":"A B C qB 9B","1025":"e"},L:{"1025":"D"},M:{"2":"D"},N:{"1":"A B"},O:{"1025":"uC"},P:{"2":"I vC wC xC yC zC 0B 0C 1C 2C 3C 4C sB 5C 6C 7C"},Q:{"1":"1B"},R:{"2":"8C"},S:{"2":"9C"}},B:1,C:"Drag and Drop"};
|
||||
Reference in New Issue
Block a user