Files
WrenchBoardIonic2023/.angular/cache/14.2.0/babel-webpack/2d748750ac47dc001163767b9b8dfd15.json
T
CHIEFSOFT\ameye cea49e295a first commit
2023-05-12 22:30:08 -04:00

1 line
2.2 KiB
JSON

{"ast":null,"code":"import { Subscriber } from '../Subscriber';\nexport function skip(count) {\n return source => source.lift(new SkipOperator(count));\n}\n\nclass SkipOperator {\n constructor(total) {\n this.total = total;\n }\n\n call(subscriber, source) {\n return source.subscribe(new SkipSubscriber(subscriber, this.total));\n }\n\n}\n\nclass SkipSubscriber extends Subscriber {\n constructor(destination, total) {\n super(destination);\n this.total = total;\n this.count = 0;\n }\n\n _next(x) {\n if (++this.count > this.total) {\n this.destination.next(x);\n }\n }\n\n}","map":{"version":3,"names":["Subscriber","skip","count","source","lift","SkipOperator","constructor","total","call","subscriber","subscribe","SkipSubscriber","destination","_next","x","next"],"sources":["D:/MobileDev/WRB/WrenchBoard2023a/node_modules/rxjs/_esm2015/internal/operators/skip.js"],"sourcesContent":["import { Subscriber } from '../Subscriber';\nexport function skip(count) {\n return (source) => source.lift(new SkipOperator(count));\n}\nclass SkipOperator {\n constructor(total) {\n this.total = total;\n }\n call(subscriber, source) {\n return source.subscribe(new SkipSubscriber(subscriber, this.total));\n }\n}\nclass SkipSubscriber extends Subscriber {\n constructor(destination, total) {\n super(destination);\n this.total = total;\n this.count = 0;\n }\n _next(x) {\n if (++this.count > this.total) {\n this.destination.next(x);\n }\n }\n}\n"],"mappings":"AAAA,SAASA,UAAT,QAA2B,eAA3B;AACA,OAAO,SAASC,IAAT,CAAcC,KAAd,EAAqB;EACxB,OAAQC,MAAD,IAAYA,MAAM,CAACC,IAAP,CAAY,IAAIC,YAAJ,CAAiBH,KAAjB,CAAZ,CAAnB;AACH;;AACD,MAAMG,YAAN,CAAmB;EACfC,WAAW,CAACC,KAAD,EAAQ;IACf,KAAKA,KAAL,GAAaA,KAAb;EACH;;EACDC,IAAI,CAACC,UAAD,EAAaN,MAAb,EAAqB;IACrB,OAAOA,MAAM,CAACO,SAAP,CAAiB,IAAIC,cAAJ,CAAmBF,UAAnB,EAA+B,KAAKF,KAApC,CAAjB,CAAP;EACH;;AANc;;AAQnB,MAAMI,cAAN,SAA6BX,UAA7B,CAAwC;EACpCM,WAAW,CAACM,WAAD,EAAcL,KAAd,EAAqB;IAC5B,MAAMK,WAAN;IACA,KAAKL,KAAL,GAAaA,KAAb;IACA,KAAKL,KAAL,GAAa,CAAb;EACH;;EACDW,KAAK,CAACC,CAAD,EAAI;IACL,IAAI,EAAE,KAAKZ,KAAP,GAAe,KAAKK,KAAxB,EAA+B;MAC3B,KAAKK,WAAL,CAAiBG,IAAjB,CAAsBD,CAAtB;IACH;EACJ;;AAVmC"},"metadata":{},"sourceType":"module"}