webdetector/.cache/f6/e7330dd9f99e0e27ef4ec13302dc14.json

1 line
33 KiB
JSON
Raw Normal View History

2018-12-21 12:36:28 +00:00
{"id":"../node_modules/rxjs/_esm5/internal/operators/skipWhile.js","dependencies":[{"name":"/Users/philkunz/gitlab/pushrocks_meta/webdetector/node_modules/rxjs/_esm5/internal/operators/skipWhile.js.map","includedInParent":true,"mtime":499162500000},{"name":"/Users/philkunz/gitlab/pushrocks_meta/webdetector/node_modules/rxjs/src/internal/operators/skipWhile.ts","includedInParent":true,"mtime":499162500000},{"name":"/Users/philkunz/gitlab/pushrocks_meta/webdetector/package.json","includedInParent":true,"mtime":1545395695572},{"name":"/Users/philkunz/gitlab/pushrocks_meta/webdetector/node_modules/rxjs/package.json","includedInParent":true,"mtime":1545395355370},{"name":"tslib","loc":{"line":2,"column":25},"parent":"/Users/philkunz/gitlab/pushrocks_meta/webdetector/node_modules/rxjs/_esm5/internal/operators/skipWhile.js","resolved":"/Users/philkunz/gitlab/pushrocks_meta/webdetector/node_modules/tslib/tslib.es6.js"},{"name":"../Subscriber","loc":{"line":3,"column":27},"parent":"/Users/philkunz/gitlab/pushrocks_meta/webdetector/node_modules/rxjs/_esm5/internal/operators/skipWhile.js","resolved":"/Users/philkunz/gitlab/pushrocks_meta/webdetector/node_modules/rxjs/_esm5/internal/Subscriber.js"}],"generated":{"js":"\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.skipWhile = skipWhile;\n\nvar tslib_1 = _interopRequireWildcard(require(\"tslib\"));\n\nvar _Subscriber = require(\"../Subscriber\");\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = Object.defineProperty && Object.getOwnPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : {}; if (desc.get || desc.set) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } } newObj.default = obj; return newObj; } }\n\n/** PURE_IMPORTS_START tslib,_Subscriber PURE_IMPORTS_END */\nfunction skipWhile(predicate) {\n return function (source) {\n return source.lift(new SkipWhileOperator(predicate));\n };\n}\n\nvar SkipWhileOperator =\n/*@__PURE__*/\nfunction () {\n function SkipWhileOperator(predicate) {\n this.predicate = predicate;\n }\n\n SkipWhileOperator.prototype.call = function (subscriber, source) {\n return source.subscribe(new SkipWhileSubscriber(subscriber, this.predicate));\n };\n\n return SkipWhileOperator;\n}();\n\nvar SkipWhileSubscriber =\n/*@__PURE__*/\nfunction (_super) {\n tslib_1.__extends(SkipWhileSubscriber, _super);\n\n function SkipWhileSubscriber(destination, predicate) {\n var _this = _super.call(this, destination) || this;\n\n _this.predicate = predicate;\n _this.skipping = true;\n _this.index = 0;\n return _this;\n }\n\n SkipWhileSubscriber.prototype._next = function (value) {\n var destination = this.destination;\n\n if (this.skipping) {\n this.tryCallPredicate(value);\n }\n\n if (!this.skipping) {\n destination.next(value);\n }\n };\n\n SkipWhileSubscriber.prototype.tryCallPredicate = function (value) {\n try {\n var result = this.predicate(value, this.index++);\n this.skipping = Boolean(result);\n } catch (err) {\n this.destination.error(err);\n }\n };\n\n return SkipWhileSubscriber;\n}(_Subscriber.Subscriber);","map":{"mappings":[{"source":"../../../src/internal/operators/skipWhile.ts","name":null,"original":{"line":3,"column":0},"generated":{"line":8,"column":0}},{"source":"../../../src/internal/operators/skipWhile.ts","name":null,"original":{"line":18,"column":0},"generated":{"line":10,"column":0}},{"source":"../../../src/internal/operators/skipWhile.ts","name":null,"original":{"line":19,"column":2},"generated":{"line":15,"column":0}},{"source":"../../../src/internal/operators/skipWhile.ts","name":null,"original":{"line":19,"column":9},"generated":{"line":15,"column":9}},{"source":"../../../src/internal/operators/skipWhile.ts","name":null,"original":{"line":19,"column":2},"generated":{"line":15,"column":18}},{"source":"..