@typed/fx 0.0.33 → 0.0.35
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintcache +1 -1
- package/cjs/fromFxEffect.d.ts +3 -7
- package/cjs/fromFxEffect.d.ts.map +1 -1
- package/cjs/fromFxEffect.js.map +1 -1
- package/esm/fromFxEffect.d.ts +3 -7
- package/esm/fromFxEffect.d.ts.map +1 -1
- package/esm/fromFxEffect.js.map +1 -1
- package/package.json +10 -7
- package/perf/cases/filter-map-reduce.ts +51 -0
- package/perf/cases/flatMap.ts +47 -0
- package/perf/cases/switchMap.ts +40 -0
- package/perf/helpers.ts +60 -0
- package/perf/readme.md +29 -0
- package/perf/runPerfTest.ts +25 -0
- package/src/Subject.test.ts +1 -1
- package/src/combine.test.ts +1 -1
- package/src/continueWith.test.ts +1 -1
- package/src/debounce.test.ts +1 -1
- package/src/delay.test.ts +1 -1
- package/src/during.test.ts +1 -1
- package/src/exhaustMap.test.ts +1 -2
- package/src/exhaustMapLatest.test.ts +1 -1
- package/src/exhaustMapList.test.ts +1 -1
- package/src/filterLoop.test.ts +1 -1
- package/src/filterMap.test.ts +1 -1
- package/src/flatMap.test.ts +1 -1
- package/src/flatMapConcurrently.test.ts +1 -1
- package/src/fromFxEffect.ts +3 -3
- package/src/hold.test.ts +1 -1
- package/src/mapCause.test.ts +1 -1
- package/src/mapEffect.test.ts +1 -1
- package/src/merge.test.ts +1 -1
- package/src/multicast.test.ts +1 -1
- package/src/orElse.test.ts +1 -1
- package/src/periodic.test.ts +1 -1
- package/src/provide.test.ts +1 -1
- package/src/since.test.ts +1 -1
- package/src/skipRepeats.test.ts +1 -1
- package/src/skipWhile.test.ts +1 -1
- package/src/slice.test.ts +1 -1
- package/src/snapshot.test.ts +1 -1
- package/src/switchMap.test.ts +1 -1
- package/src/takeWhile.test.ts +1 -1
- package/src/throttle.test.ts +1 -1
- package/src/until.test.ts +1 -1
- package/src/withEmitter.test.ts +1 -1
- package/src/zip.test.ts +1 -1
- package/src/zipIterable.test.ts +1 -1
- package/tools/benchmark.ts +159 -0
package/.eslintcache
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
[{"/Users/TylorSteinberger/code/tylors/fx/src/Fx.ts":"1","/Users/TylorSteinberger/code/tylors/fx/src/_internal.ts":"2","/Users/TylorSteinberger/code/tylors/fx/src/combine.test.ts":"3","/Users/TylorSteinberger/code/tylors/fx/src/combine.ts":"4","/Users/TylorSteinberger/code/tylors/fx/src/continueWith.ts":"5","/Users/TylorSteinberger/code/tylors/fx/src/debounce.test.ts":"6","/Users/TylorSteinberger/code/tylors/fx/src/debounce.ts":"7","/Users/TylorSteinberger/code/tylors/fx/src/delay.test.ts":"8","/Users/TylorSteinberger/code/tylors/fx/src/delay.ts":"9","/Users/TylorSteinberger/code/tylors/fx/src/during.ts":"10","/Users/TylorSteinberger/code/tylors/fx/src/flatMap.test.ts":"11","/Users/TylorSteinberger/code/tylors/fx/src/flatMap.ts":"12","/Users/TylorSteinberger/code/tylors/fx/src/flatMapConcurrently.ts":"13","/Users/TylorSteinberger/code/tylors/fx/src/fromEffect.ts":"14","/Users/TylorSteinberger/code/tylors/fx/src/hold.test.ts":"15","/Users/TylorSteinberger/code/tylors/fx/src/hold.ts":"16","/Users/TylorSteinberger/code/tylors/fx/src/index.ts":"17","/Users/TylorSteinberger/code/tylors/fx/src/merge.test.ts":"18","/Users/TylorSteinberger/code/tylors/fx/src/merge.ts":"19","/Users/TylorSteinberger/code/tylors/fx/src/multicast.test.ts":"20","/Users/TylorSteinberger/code/tylors/fx/src/multicast.ts":"21","/Users/TylorSteinberger/code/tylors/fx/src/orElse.ts":"22","/Users/TylorSteinberger/code/tylors/fx/src/periodic.test.ts":"23","/Users/TylorSteinberger/code/tylors/fx/src/periodic.ts":"24","/Users/TylorSteinberger/code/tylors/fx/src/provide.ts":"25","/Users/TylorSteinberger/code/tylors/fx/src/scheduled.ts":"26","/Users/TylorSteinberger/code/tylors/fx/src/since.ts":"27","/Users/TylorSteinberger/code/tylors/fx/src/skipRepeats.ts":"28","/Users/TylorSteinberger/code/tylors/fx/src/skipWhile.ts":"29","/Users/TylorSteinberger/code/tylors/fx/src/slice.test.ts":"30","/Users/TylorSteinberger/code/tylors/fx/src/slice.ts":"31","/Users/TylorSteinberger/code/tylors/fx/src/snapshot.ts":"32","/Users/TylorSteinberger/code/tylors/fx/src/suspendSucceed.ts":"33","/Users/TylorSteinberger/code/tylors/fx/src/switchMap.test.ts":"34","/Users/TylorSteinberger/code/tylors/fx/src/switchMap.ts":"35","/Users/TylorSteinberger/code/tylors/fx/src/takeWhile.ts":"36","/Users/TylorSteinberger/code/tylors/fx/src/throttle.test.ts":"37","/Users/TylorSteinberger/code/tylors/fx/src/throttle.ts":"38","/Users/TylorSteinberger/code/tylors/fx/src/transform.ts":"39","/Users/TylorSteinberger/code/tylors/fx/src/until.test.ts":"40","/Users/TylorSteinberger/code/tylors/fx/src/until.ts":"41","/Users/TylorSteinberger/code/tylors/fx/src/zip.test.ts":"42","/Users/TylorSteinberger/code/tylors/fx/src/zip.ts":"43","/Users/TylorSteinberger/code/tylors/fx/src/continueWith.test.ts":"44","/Users/TylorSteinberger/code/tylors/fx/src/during.test.ts":"45","/Users/TylorSteinberger/code/tylors/fx/src/filterLoop.test.ts":"46","/Users/TylorSteinberger/code/tylors/fx/src/filterLoop.ts":"47","/Users/TylorSteinberger/code/tylors/fx/src/filterMap.test.ts":"48","/Users/TylorSteinberger/code/tylors/fx/src/filterMap.ts":"49","/Users/TylorSteinberger/code/tylors/fx/src/flatMapConcurrently.test.ts":"50","/Users/TylorSteinberger/code/tylors/fx/src/fromIterable.ts":"51","/Users/TylorSteinberger/code/tylors/fx/src/mapCause.test.ts":"52","/Users/TylorSteinberger/code/tylors/fx/src/mapCause.ts":"53","/Users/TylorSteinberger/code/tylors/fx/src/mapEffect.test.ts":"54","/Users/TylorSteinberger/code/tylors/fx/src/mapEffect.ts":"55","/Users/TylorSteinberger/code/tylors/fx/src/orElse.test.ts":"56","/Users/TylorSteinberger/code/tylors/fx/src/provide.test.ts":"57","/Users/TylorSteinberger/code/tylors/fx/src/runCollect.ts":"58","/Users/TylorSteinberger/code/tylors/fx/src/runDrain.ts":"59","/Users/TylorSteinberger/code/tylors/fx/src/runObserve.ts":"60","/Users/TylorSteinberger/code/tylors/fx/src/runReduce.ts":"61","/Users/TylorSteinberger/code/tylors/fx/src/since.test.ts":"62","/Users/TylorSteinberger/code/tylors/fx/src/skipRepeats.test.ts":"63","/Users/TylorSteinberger/code/tylors/fx/src/skipWhile.test.ts":"64","/Users/TylorSteinberger/code/tylors/fx/src/snapshot.test.ts":"65","/Users/TylorSteinberger/code/tylors/fx/src/takeWhile.test.ts":"66","/Users/TylorSteinberger/code/tylors/fx/src/tapEffect.ts":"67","/Users/TylorSteinberger/code/tylors/fx/src/withEmitter.test.ts":"68","/Users/TylorSteinberger/code/tylors/fx/src/withEmitter.ts":"69","/Users/TylorSteinberger/code/tylors/fx/src/zipIterable.test.ts":"70","/Users/TylorSteinberger/code/tylors/fx/src/zipIterable.ts":"71","/Users/TylorSteinberger/code/tylors/fx/src/Subject.ts":"72","/Users/TylorSteinberger/code/tylors/fx/src/Subject.test.ts":"73","/Users/TylorSteinberger/code/tylors/fx/src/struct.ts":"74","/Users/TylorSteinberger/code/tylors/fx/src/exhaustMap.test.ts":"75","/Users/TylorSteinberger/code/tylors/fx/src/exhaustMap.ts":"76","/Users/TylorSteinberger/code/tylors/fx/src/exhaustMapLatest.test.ts":"77","/Users/TylorSteinberger/code/tylors/fx/src/exhaustMapLatest.ts":"78","/Users/TylorSteinberger/code/tylors/fx/src/scanEffect.ts":"79","/Users/TylorSteinberger/code/tylors/fx/src/exhaustMapList.test.ts":"80","/Users/TylorSteinberger/code/tylors/fx/src/exhaustMapList.ts":"81","/Users/TylorSteinberger/code/tylors/fx/src/fromFxEffect.ts":"82","/Users/TylorSteinberger/code/tylors/fx/src/on.ts":"83","/Users/TylorSteinberger/code/tylors/fx/src/fromDequeue.ts":"84","/Users/TylorSteinberger/code/tylors/fx/src/fromHub.ts":"85","/Users/TylorSteinberger/code/tylors/fx/src/toEnqueue.ts":"86","/Users/TylorSteinberger/code/tylors/fx/src/toStream.ts":"87"},{"size":1543,"mtime":1670291590715,"results":"88","hashOfConfig":"89"},{"size":2306,"mtime":1670291590716,"results":"90","hashOfConfig":"89"},{"size":919,"mtime":1666901217496,"results":"91","hashOfConfig":"89"},{"size":2169,"mtime":1670291590717,"results":"92","hashOfConfig":"89"},{"size":591,"mtime":1670291590718,"results":"93","hashOfConfig":"89"},{"size":522,"mtime":1666901217497,"results":"94","hashOfConfig":"89"},{"size":1617,"mtime":1670291590719,"results":"95","hashOfConfig":"89"},{"size":701,"mtime":1666901217498,"results":"96","hashOfConfig":"89"},{"size":557,"mtime":1670291590720,"results":"97","hashOfConfig":"89"},{"size":1674,"mtime":1670291590721,"results":"98","hashOfConfig":"89"},{"size":1506,"mtime":1666901217500,"results":"99","hashOfConfig":"89"},{"size":1216,"mtime":1667243469286,"results":"100","hashOfConfig":"89"},{"size":706,"mtime":1666906589152,"results":"101","hashOfConfig":"89"},{"size":3822,"mtime":1667245505029,"results":"102","hashOfConfig":"89"},{"size":1443,"mtime":1666901217502,"results":"103","hashOfConfig":"89"},{"size":3722,"mtime":1667783424465,"results":"104","hashOfConfig":"89"},{"size":1591,"mtime":1668115846532,"results":"105","hashOfConfig":"89"},{"size":530,"mtime":1666901217504,"results":"106","hashOfConfig":"89"},{"size":1039,"mtime":1667363999261,"results":"107","hashOfConfig":"89"},{"size":1293,"mtime":1666901217505,"results":"108","hashOfConfig":"89"},{"size":3363,"mtime":1667243508744,"results":"109","hashOfConfig":"89"},{"size":1034,"mtime":1666901391894,"results":"110","hashOfConfig":"89"},{"size":648,"mtime":1666901217507,"results":"111","hashOfConfig":"89"},{"size":429,"mtime":1666900225601,"results":"112","hashOfConfig":"89"},{"size":2111,"mtime":1667506964437,"results":"113","hashOfConfig":"89"},{"size":2515,"mtime":1666901217509,"results":"114","hashOfConfig":"89"},{"size":1010,"mtime":1666909377506,"results":"115","hashOfConfig":"89"},{"size":959,"mtime":1666901217510,"results":"116","hashOfConfig":"89"},{"size":1300,"mtime":1666901217511,"results":"117","hashOfConfig":"89"},{"size":530,"mtime":1666901217511,"results":"118","hashOfConfig":"89"},{"size":1145,"mtime":1666901217511,"results":"119","hashOfConfig":"89"},{"size":1543,"mtime":1667245692042,"results":"120","hashOfConfig":"89"},{"size":152,"mtime":1666901217512,"results":"121","hashOfConfig":"89"},{"size":976,"mtime":1666901217513,"results":"122","hashOfConfig":"89"},{"size":1628,"mtime":1666901217513,"results":"123","hashOfConfig":"89"},{"size":777,"mtime":1666901217514,"results":"124","hashOfConfig":"89"},{"size":527,"mtime":1666901217515,"results":"125","hashOfConfig":"89"},{"size":1810,"mtime":1666901217515,"results":"126","hashOfConfig":"89"},{"size":1738,"mtime":1668112851777,"results":"127","hashOfConfig":"89"},{"size":1089,"mtime":1667430061361,"results":"128","hashOfConfig":"89"},{"size":859,"mtime":1666909733301,"results":"129","hashOfConfig":"89"},{"size":832,"mtime":1666901217517,"results":"130","hashOfConfig":"89"},{"size":2272,"mtime":1667364024593,"results":"131","hashOfConfig":"89"},{"size":654,"mtime":1666901217496,"results":"132","hashOfConfig":"89"},{"size":1195,"mtime":1666923294384,"results":"133","hashOfConfig":"89"},{"size":2106,"mtime":1666901217498,"results":"134","hashOfConfig":"89"},{"size":3589,"mtime":1670291590724,"results":"135","hashOfConfig":"89"},{"size":917,"mtime":1666901217499,"results":"136","hashOfConfig":"89"},{"size":2254,"mtime":1670291590725,"results":"137","hashOfConfig":"89"},{"size":715,"mtime":1666901217501,"results":"138","hashOfConfig":"89"},{"size":541,"mtime":1670291590725,"results":"139","hashOfConfig":"89"},{"size":988,"mtime":1666901217503,"results":"140","hashOfConfig":"89"},{"size":636,"mtime":1667244943264,"results":"141","hashOfConfig":"89"},{"size":557,"mtime":1666901217504,"results":"142","hashOfConfig":"89"},{"size":474,"mtime":1666901217504,"results":"143","hashOfConfig":"89"},{"size":578,"mtime":1666901217506,"results":"144","hashOfConfig":"89"},{"size":1519,"mtime":1666901217507,"results":"145","hashOfConfig":"89"},{"size":595,"mtime":1667245260972,"results":"146","hashOfConfig":"89"},{"size":747,"mtime":1670291590726,"results":"147","hashOfConfig":"89"},{"size":1006,"mtime":1670291590726,"results":"148","hashOfConfig":"89"},{"size":1535,"mtime":1670291590727,"results":"149","hashOfConfig":"89"},{"size":1202,"mtime":1666923495584,"results":"150","hashOfConfig":"89"},{"size":770,"mtime":1666901217510,"results":"151","hashOfConfig":"89"},{"size":1116,"mtime":1666901217510,"results":"152","hashOfConfig":"89"},{"size":1270,"mtime":1666901217512,"results":"153","hashOfConfig":"89"},{"size":1080,"mtime":1666901217513,"results":"154","hashOfConfig":"89"},{"size":656,"mtime":1666901217514,"results":"155","hashOfConfig":"89"},{"size":695,"mtime":1667338167016,"results":"156","hashOfConfig":"89"},{"size":1374,"mtime":1668136960657,"results":"157","hashOfConfig":"89"},{"size":597,"mtime":1666901217517,"results":"158","hashOfConfig":"89"},{"size":1364,"mtime":1666901217517,"results":"159","hashOfConfig":"89"},{"size":7990,"mtime":1670428385044,"results":"160","hashOfConfig":"89"},{"size":2442,"mtime":1667362933383,"results":"161","hashOfConfig":"89"},{"size":612,"mtime":1667266401971,"results":"162","hashOfConfig":"89"},{"size":961,"mtime":1667342820267,"results":"163","hashOfConfig":"89"},{"size":1766,"mtime":1670291590722,"results":"164","hashOfConfig":"89"},{"size":996,"mtime":1667343685087,"results":"165","hashOfConfig":"89"},{"size":2116,"mtime":1670291590723,"results":"166","hashOfConfig":"89"},{"size":972,"mtime":1667360505974,"results":"167","hashOfConfig":"89"},{"size":1658,"mtime":1667429620812,"results":"168","hashOfConfig":"89"},{"size":6526,"mtime":1670291590724,"results":"169","hashOfConfig":"89"},{"size":894,"mtime":1667854733383,"results":"170","hashOfConfig":"89"},{"size":1332,"mtime":1667507715404,"results":"171","hashOfConfig":"89"},{"size":430,"mtime":1668112717890,"results":"172","hashOfConfig":"89"},{"size":448,"mtime":1668112866722,"results":"173","hashOfConfig":"89"},{"size":308,"mtime":1668113117499,"results":"174","hashOfConfig":"89"},{"size":2375,"mtime":1668115558567,"results":"175","hashOfConfig":"89"},{"filePath":"176","messages":"177","suppressedMessages":"178","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"y6r0b1",{"filePath":"179","messages":"180","suppressedMessages":"181","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"182","messages":"183","suppressedMessages":"184","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"185","messages":"186","suppressedMessages":"187","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"188","messages":"189","suppressedMessages":"190","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"191","messages":"192","suppressedMessages":"193","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"194","messages":"195","suppressedMessages":"196","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"197","messages":"198","suppressedMessages":"199","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"200","messages":"201","suppressedMessages":"202","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"203","messages":"204","suppressedMessages":"205","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"206","messages":"207","suppressedMessages":"208","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"209","messages":"210","suppressedMessages":"211","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"212","messages":"213","suppressedMessages":"214","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"215","messages":"216","suppressedMessages":"217","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"218","messages":"219","suppressedMessages":"220","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"221","messages":"222","suppressedMessages":"223","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"224","messages":"225","suppressedMessages":"226","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"227","messages":"228","suppressedMessages":"229","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"230","messages":"231","suppressedMessages":"232","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"233","messages":"234","suppressedMessages":"235","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"236","messages":"237","suppressedMessages":"238","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"239","messages":"240","suppressedMessages":"241","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"242","messages":"243","suppressedMessages":"244","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"245","messages":"246","suppressedMessages":"247","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"248","messages":"249","suppressedMessages":"250","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"251","messages":"252","suppressedMessages":"253","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"254","messages":"255","suppressedMessages":"256","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"257","messages":"258","suppressedMessages":"259","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"260","messages":"261","suppressedMessages":"262","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"263","messages":"264","suppressedMessages":"265","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"266","messages":"267","suppressedMessages":"268","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"269","messages":"270","suppressedMessages":"271","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"272","messages":"273","suppressedMessages":"274","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"275","messages":"276","suppressedMessages":"277","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"278","messages":"279","suppressedMessages":"280","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"281","messages":"282","suppressedMessages":"283","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"284","messages":"285","suppressedMessages":"286","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"287","messages":"288","suppressedMessages":"289","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"290","messages":"291","suppressedMessages":"292","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"293","messages":"294","suppressedMessages":"295","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"296","messages":"297","suppressedMessages":"298","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"299","messages":"300","suppressedMessages":"301","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"302","messages":"303","suppressedMessages":"304","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"305","messages":"306","suppressedMessages":"307","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"308","messages":"309","suppressedMessages":"310","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"311","messages":"312","suppressedMessages":"313","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"314","messages":"315","suppressedMessages":"316","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"317","messages":"318","suppressedMessages":"319","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"320","messages":"321","suppressedMessages":"322","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"323","messages":"324","suppressedMessages":"325","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"326","messages":"327","suppressedMessages":"328","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"329","messages":"330","suppressedMessages":"331","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"332","messages":"333","suppressedMessages":"334","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"335","messages":"336","suppressedMessages":"337","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"338","messages":"339","suppressedMessages":"340","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"341","messages":"342","suppressedMessages":"343","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"344","messages":"345","suppressedMessages":"346","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"347","messages":"348","suppressedMessages":"349","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"350","messages":"351","suppressedMessages":"352","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"353","messages":"354","suppressedMessages":"355","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"356","messages":"357","suppressedMessages":"358","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"359","messages":"360","suppressedMessages":"361","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"362","messages":"363","suppressedMessages":"364","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"365","messages":"366","suppressedMessages":"367","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"368","messages":"369","suppressedMessages":"370","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"371","messages":"372","suppressedMessages":"373","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"374","messages":"375","suppressedMessages":"376","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"377","messages":"378","suppressedMessages":"379","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"380","messages":"381","suppressedMessages":"382","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"383","messages":"384","suppressedMessages":"385","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"386","messages":"387","suppressedMessages":"388","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"389","messages":"390","suppressedMessages":"391","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"392","messages":"393","suppressedMessages":"394","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"395","messages":"396","suppressedMessages":"397","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"398","messages":"399","suppressedMessages":"400","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"401","messages":"402","suppressedMessages":"403","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"404","messages":"405","suppressedMessages":"406","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"407","messages":"408","suppressedMessages":"409","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"410","messages":"411","suppressedMessages":"412","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"413","messages":"414","suppressedMessages":"415","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"416","messages":"417","suppressedMessages":"418","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"419","messages":"420","suppressedMessages":"421","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"422","messages":"423","suppressedMessages":"424","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"425","messages":"426","suppressedMessages":"427","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"428","messages":"429","suppressedMessages":"430","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"431","messages":"432","suppressedMessages":"433","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"434","messages":"435","suppressedMessages":"436","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"/Users/TylorSteinberger/code/tylors/fx/src/Fx.ts",[],["437","438","439","440","441","442"],"/Users/TylorSteinberger/code/tylors/fx/src/_internal.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/combine.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/combine.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/continueWith.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/debounce.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/debounce.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/delay.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/delay.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/during.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/flatMap.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/flatMap.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/flatMapConcurrently.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/fromEffect.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/hold.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/hold.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/index.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/merge.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/merge.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/multicast.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/multicast.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/orElse.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/periodic.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/periodic.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/provide.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/scheduled.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/since.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/skipRepeats.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/skipWhile.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/slice.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/slice.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/snapshot.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/suspendSucceed.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/switchMap.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/switchMap.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/takeWhile.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/throttle.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/throttle.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/transform.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/until.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/until.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/zip.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/zip.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/continueWith.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/during.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/filterLoop.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/filterLoop.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/filterMap.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/filterMap.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/flatMapConcurrently.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/fromIterable.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/mapCause.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/mapCause.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/mapEffect.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/mapEffect.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/orElse.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/provide.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/runCollect.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/runDrain.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/runObserve.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/runReduce.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/since.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/skipRepeats.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/skipWhile.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/snapshot.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/takeWhile.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/tapEffect.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/withEmitter.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/withEmitter.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/zipIterable.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/zipIterable.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Subject.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Subject.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/struct.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/exhaustMap.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/exhaustMap.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/exhaustMapLatest.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/exhaustMapLatest.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/scanEffect.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/exhaustMapList.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/exhaustMapList.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/fromFxEffect.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/on.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/fromDequeue.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/fromHub.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/toEnqueue.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/toStream.ts",[],[],{"ruleId":"443","severity":1,"message":"444","line":22,"column":63,"nodeType":"445","messageId":"446","endLine":22,"endColumn":65,"suppressions":"447"},{"ruleId":"443","severity":1,"message":"448","line":22,"column":73,"nodeType":"445","messageId":"446","endLine":22,"endColumn":75,"suppressions":"449"},{"ruleId":"443","severity":1,"message":"450","line":23,"column":51,"nodeType":"445","messageId":"446","endLine":23,"endColumn":53,"suppressions":"451"},{"ruleId":"443","severity":1,"message":"448","line":23,"column":70,"nodeType":"445","messageId":"446","endLine":23,"endColumn":72,"suppressions":"452"},{"ruleId":"443","severity":1,"message":"450","line":24,"column":51,"nodeType":"445","messageId":"446","endLine":24,"endColumn":53,"suppressions":"453"},{"ruleId":"443","severity":1,"message":"444","line":24,"column":61,"nodeType":"445","messageId":"446","endLine":24,"endColumn":63,"suppressions":"454"},"@typescript-eslint/no-unused-vars","'_E' is defined but never used.","Identifier","unusedVar",["455"],"'_A' is defined but never used.",["456"],"'_R' is defined but never used.",["457"],["458"],["459"],["460"],{"kind":"461","justification":"462"},{"kind":"461","justification":"462"},{"kind":"461","justification":"462"},{"kind":"461","justification":"462"},{"kind":"461","justification":"462"},{"kind":"461","justification":"462"},"directive",""]
|
|
1
|
+
[{"/Users/TylorSteinberger/code/tylors/fx/src/Fx.ts":"1","/Users/TylorSteinberger/code/tylors/fx/src/_internal.ts":"2","/Users/TylorSteinberger/code/tylors/fx/src/combine.test.ts":"3","/Users/TylorSteinberger/code/tylors/fx/src/combine.ts":"4","/Users/TylorSteinberger/code/tylors/fx/src/continueWith.ts":"5","/Users/TylorSteinberger/code/tylors/fx/src/debounce.test.ts":"6","/Users/TylorSteinberger/code/tylors/fx/src/debounce.ts":"7","/Users/TylorSteinberger/code/tylors/fx/src/delay.test.ts":"8","/Users/TylorSteinberger/code/tylors/fx/src/delay.ts":"9","/Users/TylorSteinberger/code/tylors/fx/src/during.ts":"10","/Users/TylorSteinberger/code/tylors/fx/src/flatMap.test.ts":"11","/Users/TylorSteinberger/code/tylors/fx/src/flatMap.ts":"12","/Users/TylorSteinberger/code/tylors/fx/src/flatMapConcurrently.ts":"13","/Users/TylorSteinberger/code/tylors/fx/src/fromEffect.ts":"14","/Users/TylorSteinberger/code/tylors/fx/src/hold.test.ts":"15","/Users/TylorSteinberger/code/tylors/fx/src/hold.ts":"16","/Users/TylorSteinberger/code/tylors/fx/src/index.ts":"17","/Users/TylorSteinberger/code/tylors/fx/src/merge.test.ts":"18","/Users/TylorSteinberger/code/tylors/fx/src/merge.ts":"19","/Users/TylorSteinberger/code/tylors/fx/src/multicast.test.ts":"20","/Users/TylorSteinberger/code/tylors/fx/src/multicast.ts":"21","/Users/TylorSteinberger/code/tylors/fx/src/orElse.ts":"22","/Users/TylorSteinberger/code/tylors/fx/src/periodic.test.ts":"23","/Users/TylorSteinberger/code/tylors/fx/src/periodic.ts":"24","/Users/TylorSteinberger/code/tylors/fx/src/provide.ts":"25","/Users/TylorSteinberger/code/tylors/fx/src/scheduled.ts":"26","/Users/TylorSteinberger/code/tylors/fx/src/since.ts":"27","/Users/TylorSteinberger/code/tylors/fx/src/skipRepeats.ts":"28","/Users/TylorSteinberger/code/tylors/fx/src/skipWhile.ts":"29","/Users/TylorSteinberger/code/tylors/fx/src/slice.test.ts":"30","/Users/TylorSteinberger/code/tylors/fx/src/slice.ts":"31","/Users/TylorSteinberger/code/tylors/fx/src/snapshot.ts":"32","/Users/TylorSteinberger/code/tylors/fx/src/suspendSucceed.ts":"33","/Users/TylorSteinberger/code/tylors/fx/src/switchMap.test.ts":"34","/Users/TylorSteinberger/code/tylors/fx/src/switchMap.ts":"35","/Users/TylorSteinberger/code/tylors/fx/src/takeWhile.ts":"36","/Users/TylorSteinberger/code/tylors/fx/src/throttle.test.ts":"37","/Users/TylorSteinberger/code/tylors/fx/src/throttle.ts":"38","/Users/TylorSteinberger/code/tylors/fx/src/transform.ts":"39","/Users/TylorSteinberger/code/tylors/fx/src/until.test.ts":"40","/Users/TylorSteinberger/code/tylors/fx/src/until.ts":"41","/Users/TylorSteinberger/code/tylors/fx/src/zip.test.ts":"42","/Users/TylorSteinberger/code/tylors/fx/src/zip.ts":"43","/Users/TylorSteinberger/code/tylors/fx/src/continueWith.test.ts":"44","/Users/TylorSteinberger/code/tylors/fx/src/during.test.ts":"45","/Users/TylorSteinberger/code/tylors/fx/src/filterLoop.test.ts":"46","/Users/TylorSteinberger/code/tylors/fx/src/filterLoop.ts":"47","/Users/TylorSteinberger/code/tylors/fx/src/filterMap.test.ts":"48","/Users/TylorSteinberger/code/tylors/fx/src/filterMap.ts":"49","/Users/TylorSteinberger/code/tylors/fx/src/flatMapConcurrently.test.ts":"50","/Users/TylorSteinberger/code/tylors/fx/src/fromIterable.ts":"51","/Users/TylorSteinberger/code/tylors/fx/src/mapCause.test.ts":"52","/Users/TylorSteinberger/code/tylors/fx/src/mapCause.ts":"53","/Users/TylorSteinberger/code/tylors/fx/src/mapEffect.test.ts":"54","/Users/TylorSteinberger/code/tylors/fx/src/mapEffect.ts":"55","/Users/TylorSteinberger/code/tylors/fx/src/orElse.test.ts":"56","/Users/TylorSteinberger/code/tylors/fx/src/provide.test.ts":"57","/Users/TylorSteinberger/code/tylors/fx/src/runCollect.ts":"58","/Users/TylorSteinberger/code/tylors/fx/src/runDrain.ts":"59","/Users/TylorSteinberger/code/tylors/fx/src/runObserve.ts":"60","/Users/TylorSteinberger/code/tylors/fx/src/runReduce.ts":"61","/Users/TylorSteinberger/code/tylors/fx/src/since.test.ts":"62","/Users/TylorSteinberger/code/tylors/fx/src/skipRepeats.test.ts":"63","/Users/TylorSteinberger/code/tylors/fx/src/skipWhile.test.ts":"64","/Users/TylorSteinberger/code/tylors/fx/src/snapshot.test.ts":"65","/Users/TylorSteinberger/code/tylors/fx/src/takeWhile.test.ts":"66","/Users/TylorSteinberger/code/tylors/fx/src/tapEffect.ts":"67","/Users/TylorSteinberger/code/tylors/fx/src/withEmitter.test.ts":"68","/Users/TylorSteinberger/code/tylors/fx/src/withEmitter.ts":"69","/Users/TylorSteinberger/code/tylors/fx/src/zipIterable.test.ts":"70","/Users/TylorSteinberger/code/tylors/fx/src/zipIterable.ts":"71","/Users/TylorSteinberger/code/tylors/fx/src/Subject.ts":"72","/Users/TylorSteinberger/code/tylors/fx/src/Subject.test.ts":"73","/Users/TylorSteinberger/code/tylors/fx/src/struct.ts":"74","/Users/TylorSteinberger/code/tylors/fx/src/exhaustMap.test.ts":"75","/Users/TylorSteinberger/code/tylors/fx/src/exhaustMap.ts":"76","/Users/TylorSteinberger/code/tylors/fx/src/exhaustMapLatest.test.ts":"77","/Users/TylorSteinberger/code/tylors/fx/src/exhaustMapLatest.ts":"78","/Users/TylorSteinberger/code/tylors/fx/src/scanEffect.ts":"79","/Users/TylorSteinberger/code/tylors/fx/src/exhaustMapList.test.ts":"80","/Users/TylorSteinberger/code/tylors/fx/src/exhaustMapList.ts":"81","/Users/TylorSteinberger/code/tylors/fx/src/fromFxEffect.ts":"82","/Users/TylorSteinberger/code/tylors/fx/src/on.ts":"83","/Users/TylorSteinberger/code/tylors/fx/src/fromDequeue.ts":"84","/Users/TylorSteinberger/code/tylors/fx/src/fromHub.ts":"85","/Users/TylorSteinberger/code/tylors/fx/src/toEnqueue.ts":"86","/Users/TylorSteinberger/code/tylors/fx/src/toStream.ts":"87"},{"size":1543,"mtime":1670462380599,"results":"88","hashOfConfig":"89"},{"size":2306,"mtime":1670462380600,"results":"90","hashOfConfig":"89"},{"size":927,"mtime":1670462864282,"results":"91","hashOfConfig":"89"},{"size":2169,"mtime":1670462380601,"results":"92","hashOfConfig":"89"},{"size":591,"mtime":1670462380602,"results":"93","hashOfConfig":"89"},{"size":530,"mtime":1670462837225,"results":"94","hashOfConfig":"89"},{"size":1617,"mtime":1670462380603,"results":"95","hashOfConfig":"89"},{"size":709,"mtime":1670462837246,"results":"96","hashOfConfig":"89"},{"size":557,"mtime":1670462380604,"results":"97","hashOfConfig":"89"},{"size":1674,"mtime":1670462380605,"results":"98","hashOfConfig":"89"},{"size":1514,"mtime":1670462840388,"results":"99","hashOfConfig":"89"},{"size":1216,"mtime":1670462380609,"results":"100","hashOfConfig":"89"},{"size":706,"mtime":1670462380609,"results":"101","hashOfConfig":"89"},{"size":3822,"mtime":1670462380610,"results":"102","hashOfConfig":"89"},{"size":1451,"mtime":1670462839453,"results":"103","hashOfConfig":"89"},{"size":3722,"mtime":1670462380611,"results":"104","hashOfConfig":"89"},{"size":1591,"mtime":1670462380611,"results":"105","hashOfConfig":"89"},{"size":538,"mtime":1670462839267,"results":"106","hashOfConfig":"89"},{"size":1039,"mtime":1670462380613,"results":"107","hashOfConfig":"89"},{"size":1301,"mtime":1670462839206,"results":"108","hashOfConfig":"89"},{"size":3363,"mtime":1670462380614,"results":"109","hashOfConfig":"89"},{"size":1034,"mtime":1670462380614,"results":"110","hashOfConfig":"89"},{"size":656,"mtime":1670462839071,"results":"111","hashOfConfig":"89"},{"size":429,"mtime":1670462380615,"results":"112","hashOfConfig":"89"},{"size":2111,"mtime":1670462380615,"results":"113","hashOfConfig":"89"},{"size":2515,"mtime":1670462380617,"results":"114","hashOfConfig":"89"},{"size":1010,"mtime":1670462380618,"results":"115","hashOfConfig":"89"},{"size":959,"mtime":1670462380618,"results":"116","hashOfConfig":"89"},{"size":1300,"mtime":1670462380619,"results":"117","hashOfConfig":"89"},{"size":538,"mtime":1670462841611,"results":"118","hashOfConfig":"89"},{"size":1145,"mtime":1670462380619,"results":"119","hashOfConfig":"89"},{"size":1543,"mtime":1670462380620,"results":"120","hashOfConfig":"89"},{"size":152,"mtime":1666901217512,"results":"121","hashOfConfig":"89"},{"size":984,"mtime":1670462841946,"results":"122","hashOfConfig":"89"},{"size":1628,"mtime":1670462380621,"results":"123","hashOfConfig":"89"},{"size":777,"mtime":1670462380621,"results":"124","hashOfConfig":"89"},{"size":535,"mtime":1670462838579,"results":"125","hashOfConfig":"89"},{"size":1810,"mtime":1670462380622,"results":"126","hashOfConfig":"89"},{"size":1738,"mtime":1670462380623,"results":"127","hashOfConfig":"89"},{"size":1097,"mtime":1670462838693,"results":"128","hashOfConfig":"89"},{"size":859,"mtime":1670462380623,"results":"129","hashOfConfig":"89"},{"size":840,"mtime":1670462838773,"results":"130","hashOfConfig":"89"},{"size":2272,"mtime":1670462380624,"results":"131","hashOfConfig":"89"},{"size":662,"mtime":1670462835501,"results":"132","hashOfConfig":"89"},{"size":1203,"mtime":1670462837248,"results":"133","hashOfConfig":"89"},{"size":2114,"mtime":1670462840924,"results":"134","hashOfConfig":"89"},{"size":3589,"mtime":1670462380607,"results":"135","hashOfConfig":"89"},{"size":925,"mtime":1670462840545,"results":"136","hashOfConfig":"89"},{"size":2254,"mtime":1670462380608,"results":"137","hashOfConfig":"89"},{"size":723,"mtime":1670462840096,"results":"138","hashOfConfig":"89"},{"size":541,"mtime":1670462380610,"results":"139","hashOfConfig":"89"},{"size":996,"mtime":1670462839317,"results":"140","hashOfConfig":"89"},{"size":636,"mtime":1670462380612,"results":"141","hashOfConfig":"89"},{"size":565,"mtime":1670462839293,"results":"142","hashOfConfig":"89"},{"size":474,"mtime":1670462380612,"results":"143","hashOfConfig":"89"},{"size":586,"mtime":1670462839104,"results":"144","hashOfConfig":"89"},{"size":1527,"mtime":1670462839032,"results":"145","hashOfConfig":"89"},{"size":595,"mtime":1670462380616,"results":"146","hashOfConfig":"89"},{"size":747,"mtime":1670462380616,"results":"147","hashOfConfig":"89"},{"size":1006,"mtime":1670462380616,"results":"148","hashOfConfig":"89"},{"size":1535,"mtime":1670462380616,"results":"149","hashOfConfig":"89"},{"size":1210,"mtime":1670462839004,"results":"150","hashOfConfig":"89"},{"size":778,"mtime":1670462838947,"results":"151","hashOfConfig":"89"},{"size":1124,"mtime":1670462838947,"results":"152","hashOfConfig":"89"},{"size":1278,"mtime":1670462838927,"results":"153","hashOfConfig":"89"},{"size":1088,"mtime":1670462842127,"results":"154","hashOfConfig":"89"},{"size":656,"mtime":1670462380621,"results":"155","hashOfConfig":"89"},{"size":703,"mtime":1670462838750,"results":"156","hashOfConfig":"89"},{"size":1374,"mtime":1670462380623,"results":"157","hashOfConfig":"89"},{"size":605,"mtime":1670462838845,"results":"158","hashOfConfig":"89"},{"size":1364,"mtime":1670462380624,"results":"159","hashOfConfig":"89"},{"size":7990,"mtime":1670462380600,"results":"160","hashOfConfig":"89"},{"size":2450,"mtime":1670462837321,"results":"161","hashOfConfig":"89"},{"size":612,"mtime":1670462380620,"results":"162","hashOfConfig":"89"},{"size":968,"mtime":1670463741766,"results":"163","hashOfConfig":"89"},{"size":1766,"mtime":1670462380605,"results":"164","hashOfConfig":"89"},{"size":1004,"mtime":1670462837286,"results":"165","hashOfConfig":"89"},{"size":2116,"mtime":1670462380606,"results":"166","hashOfConfig":"89"},{"size":972,"mtime":1670462380617,"results":"167","hashOfConfig":"89"},{"size":1666,"mtime":1670462837286,"results":"168","hashOfConfig":"89"},{"size":6526,"mtime":1670462380606,"results":"169","hashOfConfig":"89"},{"size":891,"mtime":1670696531023,"results":"170","hashOfConfig":"89"},{"size":1332,"mtime":1670462380614,"results":"171","hashOfConfig":"89"},{"size":430,"mtime":1670462380609,"results":"172","hashOfConfig":"89"},{"size":448,"mtime":1670462380610,"results":"173","hashOfConfig":"89"},{"size":308,"mtime":1670462380622,"results":"174","hashOfConfig":"89"},{"size":2375,"mtime":1670462380622,"results":"175","hashOfConfig":"89"},{"filePath":"176","messages":"177","suppressedMessages":"178","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"y6r0b1",{"filePath":"179","messages":"180","suppressedMessages":"181","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"182","messages":"183","suppressedMessages":"184","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"185","messages":"186","suppressedMessages":"187","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"188","messages":"189","suppressedMessages":"190","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"191","messages":"192","suppressedMessages":"193","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"194","messages":"195","suppressedMessages":"196","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"197","messages":"198","suppressedMessages":"199","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"200","messages":"201","suppressedMessages":"202","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"203","messages":"204","suppressedMessages":"205","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"206","messages":"207","suppressedMessages":"208","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"209","messages":"210","suppressedMessages":"211","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"212","messages":"213","suppressedMessages":"214","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"215","messages":"216","suppressedMessages":"217","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"218","messages":"219","suppressedMessages":"220","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"221","messages":"222","suppressedMessages":"223","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"224","messages":"225","suppressedMessages":"226","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"227","messages":"228","suppressedMessages":"229","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"230","messages":"231","suppressedMessages":"232","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"233","messages":"234","suppressedMessages":"235","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"236","messages":"237","suppressedMessages":"238","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"239","messages":"240","suppressedMessages":"241","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"242","messages":"243","suppressedMessages":"244","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"245","messages":"246","suppressedMessages":"247","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"248","messages":"249","suppressedMessages":"250","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"251","messages":"252","suppressedMessages":"253","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"254","messages":"255","suppressedMessages":"256","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"257","messages":"258","suppressedMessages":"259","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"260","messages":"261","suppressedMessages":"262","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"263","messages":"264","suppressedMessages":"265","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"266","messages":"267","suppressedMessages":"268","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"269","messages":"270","suppressedMessages":"271","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"272","messages":"273","suppressedMessages":"274","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"275","messages":"276","suppressedMessages":"277","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"278","messages":"279","suppressedMessages":"280","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"281","messages":"282","suppressedMessages":"283","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"284","messages":"285","suppressedMessages":"286","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"287","messages":"288","suppressedMessages":"289","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"290","messages":"291","suppressedMessages":"292","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"293","messages":"294","suppressedMessages":"295","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"296","messages":"297","suppressedMessages":"298","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"299","messages":"300","suppressedMessages":"301","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"302","messages":"303","suppressedMessages":"304","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"305","messages":"306","suppressedMessages":"307","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"308","messages":"309","suppressedMessages":"310","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"311","messages":"312","suppressedMessages":"313","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"314","messages":"315","suppressedMessages":"316","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"317","messages":"318","suppressedMessages":"319","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"320","messages":"321","suppressedMessages":"322","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"323","messages":"324","suppressedMessages":"325","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"326","messages":"327","suppressedMessages":"328","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"329","messages":"330","suppressedMessages":"331","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"332","messages":"333","suppressedMessages":"334","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"335","messages":"336","suppressedMessages":"337","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"338","messages":"339","suppressedMessages":"340","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"341","messages":"342","suppressedMessages":"343","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"344","messages":"345","suppressedMessages":"346","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"347","messages":"348","suppressedMessages":"349","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"350","messages":"351","suppressedMessages":"352","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"353","messages":"354","suppressedMessages":"355","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"356","messages":"357","suppressedMessages":"358","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"359","messages":"360","suppressedMessages":"361","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"362","messages":"363","suppressedMessages":"364","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"365","messages":"366","suppressedMessages":"367","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"368","messages":"369","suppressedMessages":"370","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"371","messages":"372","suppressedMessages":"373","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"374","messages":"375","suppressedMessages":"376","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"377","messages":"378","suppressedMessages":"379","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"380","messages":"381","suppressedMessages":"382","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"383","messages":"384","suppressedMessages":"385","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"386","messages":"387","suppressedMessages":"388","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"389","messages":"390","suppressedMessages":"391","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"392","messages":"393","suppressedMessages":"394","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"395","messages":"396","suppressedMessages":"397","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"398","messages":"399","suppressedMessages":"400","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"401","messages":"402","suppressedMessages":"403","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"404","messages":"405","suppressedMessages":"406","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"407","messages":"408","suppressedMessages":"409","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"410","messages":"411","suppressedMessages":"412","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"413","messages":"414","suppressedMessages":"415","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"416","messages":"417","suppressedMessages":"418","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"419","messages":"420","suppressedMessages":"421","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"422","messages":"423","suppressedMessages":"424","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"425","messages":"426","suppressedMessages":"427","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"428","messages":"429","suppressedMessages":"430","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"431","messages":"432","suppressedMessages":"433","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"434","messages":"435","suppressedMessages":"436","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"/Users/TylorSteinberger/code/tylors/fx/src/Fx.ts",[],["437","438","439","440","441","442"],"/Users/TylorSteinberger/code/tylors/fx/src/_internal.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/combine.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/combine.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/continueWith.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/debounce.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/debounce.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/delay.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/delay.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/during.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/flatMap.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/flatMap.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/flatMapConcurrently.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/fromEffect.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/hold.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/hold.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/index.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/merge.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/merge.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/multicast.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/multicast.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/orElse.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/periodic.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/periodic.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/provide.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/scheduled.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/since.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/skipRepeats.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/skipWhile.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/slice.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/slice.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/snapshot.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/suspendSucceed.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/switchMap.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/switchMap.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/takeWhile.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/throttle.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/throttle.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/transform.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/until.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/until.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/zip.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/zip.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/continueWith.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/during.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/filterLoop.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/filterLoop.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/filterMap.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/filterMap.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/flatMapConcurrently.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/fromIterable.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/mapCause.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/mapCause.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/mapEffect.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/mapEffect.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/orElse.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/provide.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/runCollect.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/runDrain.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/runObserve.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/runReduce.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/since.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/skipRepeats.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/skipWhile.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/snapshot.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/takeWhile.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/tapEffect.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/withEmitter.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/withEmitter.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/zipIterable.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/zipIterable.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Subject.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Subject.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/struct.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/exhaustMap.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/exhaustMap.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/exhaustMapLatest.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/exhaustMapLatest.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/scanEffect.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/exhaustMapList.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/exhaustMapList.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/fromFxEffect.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/on.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/fromDequeue.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/fromHub.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/toEnqueue.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/toStream.ts",[],[],{"ruleId":"443","severity":1,"message":"444","line":22,"column":63,"nodeType":"445","messageId":"446","endLine":22,"endColumn":65,"suppressions":"447"},{"ruleId":"443","severity":1,"message":"448","line":22,"column":73,"nodeType":"445","messageId":"446","endLine":22,"endColumn":75,"suppressions":"449"},{"ruleId":"443","severity":1,"message":"450","line":23,"column":51,"nodeType":"445","messageId":"446","endLine":23,"endColumn":53,"suppressions":"451"},{"ruleId":"443","severity":1,"message":"448","line":23,"column":70,"nodeType":"445","messageId":"446","endLine":23,"endColumn":72,"suppressions":"452"},{"ruleId":"443","severity":1,"message":"450","line":24,"column":51,"nodeType":"445","messageId":"446","endLine":24,"endColumn":53,"suppressions":"453"},{"ruleId":"443","severity":1,"message":"444","line":24,"column":61,"nodeType":"445","messageId":"446","endLine":24,"endColumn":63,"suppressions":"454"},"@typescript-eslint/no-unused-vars","'_E' is defined but never used.","Identifier","unusedVar",["455"],"'_A' is defined but never used.",["456"],"'_R' is defined but never used.",["457"],["458"],["459"],["460"],{"kind":"461","justification":"462"},{"kind":"461","justification":"462"},{"kind":"461","justification":"462"},{"kind":"461","justification":"462"},{"kind":"461","justification":"462"},{"kind":"461","justification":"462"},"directive",""]
|
package/cjs/fromFxEffect.d.ts
CHANGED
|
@@ -1,13 +1,9 @@
|
|
|
1
1
|
import * as Effect from '@effect/core/io/Effect';
|
|
2
2
|
import { Fx } from './Fx.js';
|
|
3
3
|
export declare function fromFxEffect<R, E, R2, E2, A>(effectFx: Effect.Effect<R, E, Fx<R2, E2, A>>): Fx<R | R2, E | E2, A>;
|
|
4
|
-
export declare function fromFxGen<Eff extends Effect.GenEffect<any, any, any>, R2, E2, A>(f: (i: Effect.Adapter) => Generator<Eff, Fx<R2, E2, A>, any>): Fx<[
|
|
5
|
-
Eff
|
|
6
|
-
] extends [{
|
|
4
|
+
export declare function fromFxGen<Eff extends Effect.GenEffect<any, any, any>, R2, E2, A>(f: (i: Effect.Adapter) => Generator<Eff, Fx<R2, E2, A>, any>): Fx<([Eff] extends [{
|
|
7
5
|
[Effect._GenR]: () => infer R;
|
|
8
|
-
}] ? R : never | R2, [
|
|
9
|
-
Eff
|
|
10
|
-
] extends [{
|
|
6
|
+
}] ? R : never) | R2, ([Eff] extends [{
|
|
11
7
|
[Effect._GenE]: () => infer E;
|
|
12
|
-
}] ? E : never | E2, A>;
|
|
8
|
+
}] ? E : never) | E2, A>;
|
|
13
9
|
//# sourceMappingURL=fromFxEffect.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fromFxEffect.d.ts","sourceRoot":"","sources":["../src/fromFxEffect.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,MAAM,wBAAwB,CAAA;AAGhD,OAAO,EAAE,EAAE,EAAE,MAAM,SAAS,CAAA;AAE5B,wBAAgB,YAAY,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAC1C,QAAQ,EAAE,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC,GAC3C,EAAE,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,CAAC,CAOvB;AAED,wBAAgB,SAAS,CAAC,GAAG,SAAS,MAAM,CAAC,SAAS,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAC9E,CAAC,EAAE,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,KAAK,SAAS,CAAC,GAAG,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,EAAE,GAAG,CAAC,GAC3D,EAAE,CACH
|
|
1
|
+
{"version":3,"file":"fromFxEffect.d.ts","sourceRoot":"","sources":["../src/fromFxEffect.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,MAAM,wBAAwB,CAAA;AAGhD,OAAO,EAAE,EAAE,EAAE,MAAM,SAAS,CAAA;AAE5B,wBAAgB,YAAY,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAC1C,QAAQ,EAAE,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC,GAC3C,EAAE,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,CAAC,CAOvB;AAED,wBAAgB,SAAS,CAAC,GAAG,SAAS,MAAM,CAAC,SAAS,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAC9E,CAAC,EAAE,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,KAAK,SAAS,CAAC,GAAG,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,EAAE,GAAG,CAAC,GAC3D,EAAE,CACH,CAAC,CAAC,GAAG,CAAC,SAAS,CAAC;IAAE,CAAC,MAAM,CAAC,KAAK,CAAC,EAAE,MAAM,MAAM,CAAC,CAAA;CAAE,CAAC,GAAG,CAAC,GAAG,KAAK,CAAC,GAAG,EAAE,EACpE,CAAC,CAAC,GAAG,CAAC,SAAS,CAAC;IAAE,CAAC,MAAM,CAAC,KAAK,CAAC,EAAE,MAAM,MAAM,CAAC,CAAA;CAAE,CAAC,GAAG,CAAC,GAAG,KAAK,CAAC,GAAG,EAAE,EACpE,CAAC,CACF,CAQA"}
|
package/cjs/fromFxEffect.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fromFxEffect.js","sourceRoot":"","sources":["../src/fromFxEffect.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,+DAAgD;AAChD,mDAA2C;AAE3C,mCAA4B;AAE5B,SAAgB,YAAY,CAC1B,QAA4C;IAE5C,OAAO,IAAA,UAAE,EAAC,CAAC,OAAO,EAAE,EAAE,CACpB,IAAA,eAAI,EACF,QAAQ,EACR,MAAM,CAAC,eAAe,CAAC,OAAO,CAAC,SAAS,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC,CACnE,CACF,CAAA;AACH,CAAC;AATD,oCASC;AAED,SAAgB,SAAS,CACvB,CAA4D;IAM5D,OAAO,YAAY,CAMjB,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,
|
|
1
|
+
{"version":3,"file":"fromFxEffect.js","sourceRoot":"","sources":["../src/fromFxEffect.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,+DAAgD;AAChD,mDAA2C;AAE3C,mCAA4B;AAE5B,SAAgB,YAAY,CAC1B,QAA4C;IAE5C,OAAO,IAAA,UAAE,EAAC,CAAC,OAAO,EAAE,EAAE,CACpB,IAAA,eAAI,EACF,QAAQ,EACR,MAAM,CAAC,eAAe,CAAC,OAAO,CAAC,SAAS,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC,CACnE,CACF,CAAA;AACH,CAAC;AATD,oCASC;AAED,SAAgB,SAAS,CACvB,CAA4D;IAM5D,OAAO,YAAY,CAMjB,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAA;AAClB,CAAC;AAdD,8BAcC"}
|
package/esm/fromFxEffect.d.ts
CHANGED
|
@@ -1,13 +1,9 @@
|
|
|
1
1
|
import * as Effect from '@effect/core/io/Effect';
|
|
2
2
|
import { Fx } from './Fx.js';
|
|
3
3
|
export declare function fromFxEffect<R, E, R2, E2, A>(effectFx: Effect.Effect<R, E, Fx<R2, E2, A>>): Fx<R | R2, E | E2, A>;
|
|
4
|
-
export declare function fromFxGen<Eff extends Effect.GenEffect<any, any, any>, R2, E2, A>(f: (i: Effect.Adapter) => Generator<Eff, Fx<R2, E2, A>, any>): Fx<[
|
|
5
|
-
Eff
|
|
6
|
-
] extends [{
|
|
4
|
+
export declare function fromFxGen<Eff extends Effect.GenEffect<any, any, any>, R2, E2, A>(f: (i: Effect.Adapter) => Generator<Eff, Fx<R2, E2, A>, any>): Fx<([Eff] extends [{
|
|
7
5
|
[Effect._GenR]: () => infer R;
|
|
8
|
-
}] ? R : never | R2, [
|
|
9
|
-
Eff
|
|
10
|
-
] extends [{
|
|
6
|
+
}] ? R : never) | R2, ([Eff] extends [{
|
|
11
7
|
[Effect._GenE]: () => infer E;
|
|
12
|
-
}] ? E : never | E2, A>;
|
|
8
|
+
}] ? E : never) | E2, A>;
|
|
13
9
|
//# sourceMappingURL=fromFxEffect.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fromFxEffect.d.ts","sourceRoot":"","sources":["../src/fromFxEffect.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,MAAM,wBAAwB,CAAA;AAGhD,OAAO,EAAE,EAAE,EAAE,MAAM,SAAS,CAAA;AAE5B,wBAAgB,YAAY,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAC1C,QAAQ,EAAE,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC,GAC3C,EAAE,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,CAAC,CAOvB;AAED,wBAAgB,SAAS,CAAC,GAAG,SAAS,MAAM,CAAC,SAAS,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAC9E,CAAC,EAAE,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,KAAK,SAAS,CAAC,GAAG,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,EAAE,GAAG,CAAC,GAC3D,EAAE,CACH
|
|
1
|
+
{"version":3,"file":"fromFxEffect.d.ts","sourceRoot":"","sources":["../src/fromFxEffect.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,MAAM,wBAAwB,CAAA;AAGhD,OAAO,EAAE,EAAE,EAAE,MAAM,SAAS,CAAA;AAE5B,wBAAgB,YAAY,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAC1C,QAAQ,EAAE,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC,GAC3C,EAAE,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,CAAC,CAOvB;AAED,wBAAgB,SAAS,CAAC,GAAG,SAAS,MAAM,CAAC,SAAS,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAC9E,CAAC,EAAE,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,KAAK,SAAS,CAAC,GAAG,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,EAAE,GAAG,CAAC,GAC3D,EAAE,CACH,CAAC,CAAC,GAAG,CAAC,SAAS,CAAC;IAAE,CAAC,MAAM,CAAC,KAAK,CAAC,EAAE,MAAM,MAAM,CAAC,CAAA;CAAE,CAAC,GAAG,CAAC,GAAG,KAAK,CAAC,GAAG,EAAE,EACpE,CAAC,CAAC,GAAG,CAAC,SAAS,CAAC;IAAE,CAAC,MAAM,CAAC,KAAK,CAAC,EAAE,MAAM,MAAM,CAAC,CAAA;CAAE,CAAC,GAAG,CAAC,GAAG,KAAK,CAAC,GAAG,EAAE,EACpE,CAAC,CACF,CAQA"}
|
package/esm/fromFxEffect.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fromFxEffect.js","sourceRoot":"","sources":["../src/fromFxEffect.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,MAAM,wBAAwB,CAAA;AAChD,OAAO,EAAE,IAAI,EAAE,MAAM,sBAAsB,CAAA;AAE3C,OAAO,EAAE,EAAE,EAAE,MAAM,SAAS,CAAA;AAE5B,MAAM,UAAU,YAAY,CAC1B,QAA4C;IAE5C,OAAO,EAAE,CAAC,CAAC,OAAO,EAAE,EAAE,CACpB,IAAI,CACF,QAAQ,EACR,MAAM,CAAC,eAAe,CAAC,OAAO,CAAC,SAAS,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC,CACnE,CACF,CAAA;AACH,CAAC;AAED,MAAM,UAAU,SAAS,CACvB,CAA4D;IAM5D,OAAO,YAAY,CAMjB,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,
|
|
1
|
+
{"version":3,"file":"fromFxEffect.js","sourceRoot":"","sources":["../src/fromFxEffect.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,MAAM,wBAAwB,CAAA;AAChD,OAAO,EAAE,IAAI,EAAE,MAAM,sBAAsB,CAAA;AAE3C,OAAO,EAAE,EAAE,EAAE,MAAM,SAAS,CAAA;AAE5B,MAAM,UAAU,YAAY,CAC1B,QAA4C;IAE5C,OAAO,EAAE,CAAC,CAAC,OAAO,EAAE,EAAE,CACpB,IAAI,CACF,QAAQ,EACR,MAAM,CAAC,eAAe,CAAC,OAAO,CAAC,SAAS,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC,CACnE,CACF,CAAA;AACH,CAAC;AAED,MAAM,UAAU,SAAS,CACvB,CAA4D;IAM5D,OAAO,YAAY,CAMjB,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAA;AAClB,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@typed/fx",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.35",
|
|
4
4
|
"description": "High-performance Asynchronous Effects",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "esm/index.js",
|
|
@@ -20,11 +20,11 @@
|
|
|
20
20
|
"preversion": "npm test",
|
|
21
21
|
"postversion": "npm run build && npm publish --access=public",
|
|
22
22
|
"prepare": "ts-patch install -s",
|
|
23
|
-
"perf": "
|
|
24
|
-
"perf:filter-map-reduce": "npm run
|
|
25
|
-
"perf:flatMap": "npm run
|
|
26
|
-
"perf:switchMap": "npm run
|
|
27
|
-
"
|
|
23
|
+
"perf": "npm run esm perf/runPerfTest.ts",
|
|
24
|
+
"perf:filter-map-reduce": "npm run esm perf/cases/filter-map-reduce.ts",
|
|
25
|
+
"perf:flatMap": "npm run esm perf/cases/flatMap.ts",
|
|
26
|
+
"perf:switchMap": "npm run esm perf/cases/switchMap.ts",
|
|
27
|
+
"esm": "ESBK_DISABLE_CACHE=1 node --max-old-space-size=4096 --loader @esbuild-kit/esm-loader"
|
|
28
28
|
},
|
|
29
29
|
"keywords": [
|
|
30
30
|
"Fx",
|
|
@@ -37,7 +37,9 @@
|
|
|
37
37
|
"author": "Tylor Steinberger (tlsteinberger167@gmail.com)",
|
|
38
38
|
"license": "MIT",
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"effect": "
|
|
40
|
+
"@effect/core": "^0.0.16",
|
|
41
|
+
"@fp-ts/data": "^0.0.22",
|
|
42
|
+
"@tsplus/stdlib": "^0.2.8"
|
|
41
43
|
},
|
|
42
44
|
"peerDependencies": {
|
|
43
45
|
"tslib": "^2.4.0",
|
|
@@ -73,6 +75,7 @@
|
|
|
73
75
|
"prettier": "^2.8.0",
|
|
74
76
|
"rxjs": "^7.6.0",
|
|
75
77
|
"source-map-support": "^0.5.21",
|
|
78
|
+
"tablemark": "^3.0.0",
|
|
76
79
|
"ts-patch": "^2.0.2",
|
|
77
80
|
"tsconfig-paths": "^4.1.1",
|
|
78
81
|
"tsconfig-replace-paths": "^0.0.11",
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { performance } from 'node:perf_hooks'
|
|
2
|
+
|
|
3
|
+
import * as Stream from '@effect/core/stream/Stream'
|
|
4
|
+
import * as MC from '@most/core'
|
|
5
|
+
import * as Chunk from '@tsplus/stdlib/collections/Chunk'
|
|
6
|
+
import { pipe } from '@tsplus/stdlib/data/Function'
|
|
7
|
+
import * as rxjs from 'rxjs'
|
|
8
|
+
|
|
9
|
+
import * as Fx from '../../src/index'
|
|
10
|
+
import {
|
|
11
|
+
RunTestConfig,
|
|
12
|
+
TestSuite,
|
|
13
|
+
printTestSuiteResult,
|
|
14
|
+
runTestSuite,
|
|
15
|
+
} from '../../tools/benchmark.js'
|
|
16
|
+
import { effectTest, fxTest, isMain, mostTest, rxjsTest } from '../helpers.js'
|
|
17
|
+
|
|
18
|
+
const array = Array.from({ length: 100_000 }, (_, i) => i)
|
|
19
|
+
const filterEven = (n: number) => n % 2 === 0
|
|
20
|
+
const double = (n: number) => n * 2
|
|
21
|
+
const sum = (a: number, b: number) => a + b
|
|
22
|
+
|
|
23
|
+
const suite: TestSuite = TestSuite(`filter -> map -> reduce ${array.length} integers`, [
|
|
24
|
+
fxTest(() =>
|
|
25
|
+
pipe(Fx.fromIterable(array), Fx.filter(filterEven), Fx.map(double), Fx.scan(0, sum)),
|
|
26
|
+
),
|
|
27
|
+
mostTest((fromArray) =>
|
|
28
|
+
pipe(fromArray(array), MC.filter(filterEven), MC.map(double), MC.scan(sum, 0)),
|
|
29
|
+
),
|
|
30
|
+
rxjsTest(() =>
|
|
31
|
+
pipe(rxjs.from(array), rxjs.filter(filterEven), rxjs.map(double), rxjs.scan(sum, 0)),
|
|
32
|
+
),
|
|
33
|
+
effectTest(() =>
|
|
34
|
+
pipe(
|
|
35
|
+
Stream.fromChunk(Chunk.from(array)),
|
|
36
|
+
Stream.filter(filterEven),
|
|
37
|
+
Stream.map(double),
|
|
38
|
+
Stream.scan(0, sum),
|
|
39
|
+
Stream.runDrain,
|
|
40
|
+
),
|
|
41
|
+
),
|
|
42
|
+
])
|
|
43
|
+
|
|
44
|
+
export const result = await runTestSuite(
|
|
45
|
+
suite,
|
|
46
|
+
RunTestConfig(100, () => performance.now()),
|
|
47
|
+
)
|
|
48
|
+
|
|
49
|
+
if (isMain(import.meta)) {
|
|
50
|
+
console.log(printTestSuiteResult(result))
|
|
51
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { performance } from 'node:perf_hooks'
|
|
2
|
+
|
|
3
|
+
import * as Stream from '@effect/core/stream/Stream'
|
|
4
|
+
import * as MC from '@most/core'
|
|
5
|
+
import { pipe } from '@tsplus/stdlib/data/Function'
|
|
6
|
+
import * as rxjs from 'rxjs'
|
|
7
|
+
|
|
8
|
+
import * as Fx from '../../src/index'
|
|
9
|
+
import {
|
|
10
|
+
RunTestConfig,
|
|
11
|
+
TestSuite,
|
|
12
|
+
printTestSuiteResult,
|
|
13
|
+
runTestSuite,
|
|
14
|
+
} from '../../tools/benchmark.js'
|
|
15
|
+
import { effectTest, fxTest, isMain, mostTest, rxjsTest } from '../helpers.js'
|
|
16
|
+
|
|
17
|
+
const array = Array.from({ length: 1000 }, (_, i) => Array.from({ length: 1000 }, (_, j) => i + j))
|
|
18
|
+
const sum = (a: number, b: number) => a + b
|
|
19
|
+
|
|
20
|
+
const suite: TestSuite = TestSuite(`flatMap ${array.length} * ${array.length} integers`, [
|
|
21
|
+
fxTest(() => pipe(Fx.fromIterable(array), Fx.flatMap(Fx.fromIterable), Fx.scan(0, sum))),
|
|
22
|
+
mostTest((fromArray) => pipe(fromArray(array), MC.chain(fromArray), MC.scan(sum, 0))),
|
|
23
|
+
rxjsTest(() =>
|
|
24
|
+
pipe(
|
|
25
|
+
rxjs.from(array),
|
|
26
|
+
rxjs.flatMap((xs) => rxjs.from(xs)),
|
|
27
|
+
rxjs.scan(sum, 0),
|
|
28
|
+
),
|
|
29
|
+
),
|
|
30
|
+
effectTest(() =>
|
|
31
|
+
pipe(
|
|
32
|
+
Stream.fromCollection(array),
|
|
33
|
+
Stream.flatMap(Stream.fromCollection),
|
|
34
|
+
Stream.scan(0, sum),
|
|
35
|
+
Stream.runDrain,
|
|
36
|
+
),
|
|
37
|
+
),
|
|
38
|
+
])
|
|
39
|
+
|
|
40
|
+
export const result = await runTestSuite(
|
|
41
|
+
suite,
|
|
42
|
+
RunTestConfig(10, () => performance.now()),
|
|
43
|
+
)
|
|
44
|
+
|
|
45
|
+
if (isMain(import.meta)) {
|
|
46
|
+
console.log(printTestSuiteResult(result))
|
|
47
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { performance } from 'node:perf_hooks'
|
|
2
|
+
|
|
3
|
+
import * as MC from '@most/core'
|
|
4
|
+
import { pipe } from '@tsplus/stdlib/data/Function'
|
|
5
|
+
import * as rxjs from 'rxjs'
|
|
6
|
+
|
|
7
|
+
import * as Fx from '../../src/index'
|
|
8
|
+
import {
|
|
9
|
+
RunTestConfig,
|
|
10
|
+
TestSuite,
|
|
11
|
+
printTestSuiteResult,
|
|
12
|
+
runTestSuite,
|
|
13
|
+
} from '../../tools/benchmark.js'
|
|
14
|
+
import { fxTest, isMain, mostTest, rxjsTest } from '../helpers.js'
|
|
15
|
+
|
|
16
|
+
const array = Array.from({ length: 1000 }, (_, i) => Array.from({ length: 1000 }, (_, j) => i + j))
|
|
17
|
+
const sum = (a: number, b: number) => a + b
|
|
18
|
+
|
|
19
|
+
const suite: TestSuite = TestSuite(`switchMap ${array.length} * ${array.length} integers`, [
|
|
20
|
+
fxTest(() => pipe(Fx.fromIterable(array), Fx.switchMap(Fx.fromIterable), Fx.scan(0, sum))),
|
|
21
|
+
mostTest((fromArray) =>
|
|
22
|
+
pipe(fromArray(array), MC.map(fromArray), MC.switchLatest, MC.scan(sum, 0)),
|
|
23
|
+
),
|
|
24
|
+
rxjsTest(() =>
|
|
25
|
+
pipe(
|
|
26
|
+
rxjs.from(array),
|
|
27
|
+
rxjs.switchMap((xs) => rxjs.from(xs)),
|
|
28
|
+
rxjs.scan(sum, 0),
|
|
29
|
+
),
|
|
30
|
+
),
|
|
31
|
+
])
|
|
32
|
+
|
|
33
|
+
export const result = await runTestSuite(
|
|
34
|
+
suite,
|
|
35
|
+
RunTestConfig(10, () => performance.now()),
|
|
36
|
+
)
|
|
37
|
+
|
|
38
|
+
if (isMain(import.meta)) {
|
|
39
|
+
console.log(printTestSuiteResult(result))
|
|
40
|
+
}
|
package/perf/helpers.ts
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import * as url from 'node:url'
|
|
2
|
+
|
|
3
|
+
import * as Effect from '@effect/core/io/Effect'
|
|
4
|
+
import * as MC from '@most/core'
|
|
5
|
+
import * as MS from '@most/scheduler'
|
|
6
|
+
import { asap } from '@most/scheduler'
|
|
7
|
+
import * as MT from '@most/types'
|
|
8
|
+
import * as rxjs from 'rxjs'
|
|
9
|
+
|
|
10
|
+
import * as Fx from '../src/index'
|
|
11
|
+
import { PerformanceTestCase } from '../tools/benchmark.js'
|
|
12
|
+
|
|
13
|
+
export function effectTest<E, A>(init: () => Effect.Effect<never, E, A>) {
|
|
14
|
+
return PerformanceTestCase('effect/Stream', init, Effect.unsafeRunPromise)
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export function rxjsTest<A>(init: () => rxjs.Observable<A>) {
|
|
18
|
+
return PerformanceTestCase('rxjs @7', init, (o) => new Promise((resolve) => o.subscribe(resolve)))
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
export function mostTest<A>(init: (fromArray: typeof mostFromArray) => MT.Stream<A>) {
|
|
22
|
+
const scheduler = MS.newDefaultScheduler()
|
|
23
|
+
|
|
24
|
+
return PerformanceTestCase(
|
|
25
|
+
'@most/core',
|
|
26
|
+
() => init(mostFromArray),
|
|
27
|
+
(o) => MC.runEffects(o, scheduler),
|
|
28
|
+
)
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
export function mostFromArray<A>(array: readonly A[]): MT.Stream<A> {
|
|
32
|
+
const l = array.length
|
|
33
|
+
return MC.newStream((sink, scheduler) =>
|
|
34
|
+
asap(
|
|
35
|
+
{
|
|
36
|
+
run(t) {
|
|
37
|
+
for (let i = 0; i < l; ++i) {
|
|
38
|
+
sink.event(t, array[i])
|
|
39
|
+
}
|
|
40
|
+
sink.end(t)
|
|
41
|
+
},
|
|
42
|
+
error(t, e) {
|
|
43
|
+
sink.error(t, e)
|
|
44
|
+
},
|
|
45
|
+
dispose() {
|
|
46
|
+
// Nothing to dispose
|
|
47
|
+
},
|
|
48
|
+
},
|
|
49
|
+
scheduler,
|
|
50
|
+
),
|
|
51
|
+
)
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
export function fxTest<E, A>(init: () => Fx.Fx<never, E, A>) {
|
|
55
|
+
return PerformanceTestCase('@typed/fx', () => Fx.runDrain(init()), Effect.unsafeRunPromise)
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
export function isMain(meta: ImportMeta) {
|
|
59
|
+
return meta.url.startsWith('file:') && process.argv[1] === url.fileURLToPath(meta.url)
|
|
60
|
+
}
|
package/perf/readme.md
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
## filter -> map -> reduce 100000 integers
|
|
2
|
+
|
|
3
|
+
| Library | Average | Min | Max | Time to init | Overhead |
|
|
4
|
+
| :------------ | :------- | :------ | :------- | :----------- | :------- |
|
|
5
|
+
| @most/core | 0.2568 | 0.1631 | 0.3892 | 0.3249 | 1 |
|
|
6
|
+
| @typed/fx | 18.8323 | 16.4398 | 20.9216 | 2.6015 | 73.3345 |
|
|
7
|
+
| rxjs @7 | 57.6014 | 44.5954 | 112.446 | 0.3096 | 224.3045 |
|
|
8
|
+
| effect/Stream | 123.0393 | 93.0288 | 655.9159 | 0.6783 | 479.125 |
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
## flatMap 1000 * 1000 integers
|
|
13
|
+
|
|
14
|
+
| Library | Average | Min | Max | Time to init | Overhead |
|
|
15
|
+
| :------------ | :-------- | :-------- | :-------- | :----------- | :------- |
|
|
16
|
+
| @most/core | 15.4904 | 12.6532 | 16.4449 | 0.1212 | 1 |
|
|
17
|
+
| @typed/fx | 234.3654 | 220.5097 | 230.1482 | 0.6584 | 15.1297 |
|
|
18
|
+
| effect/Stream | 1120.986 | 721.7412 | 1270.016 | 0.4573 | 72.3665 |
|
|
19
|
+
| rxjs @7 | 1202.6763 | 1092.9419 | 1538.5066 | 0.1441 | 77.6401 |
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
## switchMap 1000 * 1000 integers
|
|
24
|
+
|
|
25
|
+
| Library | Average | Min | Max | Time to init | Overhead |
|
|
26
|
+
| :--------- | :------- | :------- | :-------- | :----------- | :------- |
|
|
27
|
+
| @most/core | 2.0085 | 0.9466 | 4.1761 | 0.2004 | 1 |
|
|
28
|
+
| @typed/fx | 186.2795 | 156.3581 | 180.712 | 0.5469 | 92.7456 |
|
|
29
|
+
| rxjs @7 | 943.8542 | 876.9877 | 1019.2166 | 0.4218 | 469.9299 |
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { TestSuiteResult, printTestSuiteResult } from '../tools/benchmark.js'
|
|
2
|
+
|
|
3
|
+
import { isMain } from './helpers.js'
|
|
4
|
+
|
|
5
|
+
export const results: readonly TestSuiteResult[] = await runSequentially([
|
|
6
|
+
() => import('./cases/filter-map-reduce.js').then((x) => x.result),
|
|
7
|
+
() => import('./cases/flatMap.js').then((x) => x.result),
|
|
8
|
+
() => import('./cases/switchMap.js').then((x) => x.result),
|
|
9
|
+
])
|
|
10
|
+
|
|
11
|
+
if (isMain(import.meta)) {
|
|
12
|
+
console.log('\n\n')
|
|
13
|
+
console.log(results.map(printTestSuiteResult).join('\n\n'))
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
async function runSequentially<Promises extends ReadonlyArray<() => Promise<any>>>(
|
|
17
|
+
tasks: Promises,
|
|
18
|
+
): Promise<{ readonly [K in keyof Promises]: Awaited<ReturnType<Promises[K]>> }> {
|
|
19
|
+
const results: any[] = []
|
|
20
|
+
for (const task of tasks) {
|
|
21
|
+
results.push(await task())
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
return results as any
|
|
25
|
+
}
|
package/src/Subject.test.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { deepStrictEqual } from 'assert'
|
|
|
2
2
|
|
|
3
3
|
import * as Effect from '@effect/core/io/Effect'
|
|
4
4
|
import * as Fiber from '@effect/core/io/Fiber'
|
|
5
|
-
import { pipe } from '@
|
|
5
|
+
import { pipe } from '@tsplus/stdlib/data/Function'
|
|
6
6
|
|
|
7
7
|
import * as Fx from './index.js'
|
|
8
8
|
|
package/src/combine.test.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { deepStrictEqual } from 'assert'
|
|
2
2
|
|
|
3
3
|
import * as Effect from '@effect/core/io/Effect'
|
|
4
|
-
import { pipe } from '@fp-ts/data/Function'
|
|
5
4
|
import * as Duration from '@tsplus/stdlib/data/Duration'
|
|
5
|
+
import { pipe } from '@tsplus/stdlib/data/Function'
|
|
6
6
|
|
|
7
7
|
import * as Fx from './index.js'
|
|
8
8
|
|
package/src/continueWith.test.ts
CHANGED
package/src/debounce.test.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { deepStrictEqual } from 'assert'
|
|
2
2
|
|
|
3
3
|
import * as Effect from '@effect/core/io/Effect'
|
|
4
|
-
import { pipe } from '@fp-ts/data/Function'
|
|
5
4
|
import { millis } from '@tsplus/stdlib/data/Duration'
|
|
5
|
+
import { pipe } from '@tsplus/stdlib/data/Function'
|
|
6
6
|
|
|
7
7
|
import * as Fx from './index.js'
|
|
8
8
|
|
package/src/delay.test.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { deepStrictEqual, ok } from 'assert'
|
|
2
2
|
|
|
3
3
|
import * as Effect from '@effect/core/io/Effect'
|
|
4
|
-
import { pipe } from '@fp-ts/data/Function'
|
|
5
4
|
import * as Duration from '@tsplus/stdlib/data/Duration'
|
|
5
|
+
import { pipe } from '@tsplus/stdlib/data/Function'
|
|
6
6
|
|
|
7
7
|
import * as Fx from './index.js'
|
|
8
8
|
|
package/src/during.test.ts
CHANGED
|
@@ -4,8 +4,8 @@ import * as Effect from '@effect/core/io/Effect'
|
|
|
4
4
|
import * as Fiber from '@effect/core/io/Fiber'
|
|
5
5
|
import * as TestClock from '@effect/core/testing/TestClock'
|
|
6
6
|
import { TestEnvironment } from '@effect/core/testing/TestEnvironment'
|
|
7
|
-
import { pipe } from '@fp-ts/data/Function'
|
|
8
7
|
import { millis } from '@tsplus/stdlib/data/Duration'
|
|
8
|
+
import { pipe } from '@tsplus/stdlib/data/Function'
|
|
9
9
|
|
|
10
10
|
import * as Fx from './index.js'
|
|
11
11
|
|
package/src/exhaustMap.test.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { deepStrictEqual } from 'assert'
|
|
2
2
|
|
|
3
3
|
import * as Effect from '@effect/core/io/Effect'
|
|
4
|
-
import { pipe } from '@fp-ts/data/Function'
|
|
5
4
|
import * as Duration from '@tsplus/stdlib/data/Duration'
|
|
5
|
+
import { pipe } from '@tsplus/stdlib/data/Function'
|
|
6
6
|
|
|
7
7
|
import * as Fx from './index.js'
|
|
8
8
|
|
|
@@ -25,7 +25,6 @@ describe(import.meta.url, () => {
|
|
|
25
25
|
Fx.fromIterable([1, 2, 3]),
|
|
26
26
|
Fx.exhaustMap((n) => Fx.delay(Duration.millis(10))(Fx.fromIterable([n, n, n]))),
|
|
27
27
|
Fx.runCollect,
|
|
28
|
-
|
|
29
28
|
Effect.unsafeRunPromise,
|
|
30
29
|
)
|
|
31
30
|
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { deepStrictEqual } from 'assert'
|
|
2
2
|
|
|
3
3
|
import * as Effect from '@effect/core/io/Effect'
|
|
4
|
-
import { pipe } from '@fp-ts/data/Function'
|
|
5
4
|
import * as Duration from '@tsplus/stdlib/data/Duration'
|
|
5
|
+
import { pipe } from '@tsplus/stdlib/data/Function'
|
|
6
6
|
|
|
7
7
|
import * as Fx from './index.js'
|
|
8
8
|
|
|
@@ -4,8 +4,8 @@ import * as Effect from '@effect/core/io/Effect'
|
|
|
4
4
|
import * as Fiber from '@effect/core/io/Fiber'
|
|
5
5
|
import * as TestClock from '@effect/core/testing/TestClock'
|
|
6
6
|
import { TestEnvironment } from '@effect/core/testing/TestEnvironment'
|
|
7
|
-
import { pipe } from '@fp-ts/data/Function'
|
|
8
7
|
import { millis } from '@tsplus/stdlib/data/Duration'
|
|
8
|
+
import { pipe } from '@tsplus/stdlib/data/Function'
|
|
9
9
|
|
|
10
10
|
import * as Fx from './index.js'
|
|
11
11
|
|
package/src/filterLoop.test.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { deepStrictEqual } from 'assert'
|
|
2
2
|
|
|
3
3
|
import * as Effect from '@effect/core/io/Effect'
|
|
4
|
-
import { pipe } from '@
|
|
4
|
+
import { pipe } from '@tsplus/stdlib/data/Function'
|
|
5
5
|
import * as Maybe from '@tsplus/stdlib/data/Maybe'
|
|
6
6
|
|
|
7
7
|
import * as Fx from './index.js'
|
package/src/filterMap.test.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { deepStrictEqual } from 'assert'
|
|
2
2
|
|
|
3
3
|
import * as Effect from '@effect/core/io/Effect'
|
|
4
|
-
import { pipe } from '@
|
|
4
|
+
import { pipe } from '@tsplus/stdlib/data/Function'
|
|
5
5
|
import * as Maybe from '@tsplus/stdlib/data/Maybe'
|
|
6
6
|
|
|
7
7
|
import * as Fx from './index.js'
|
package/src/flatMap.test.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { deepStrictEqual } from 'assert'
|
|
2
2
|
|
|
3
3
|
import * as Effect from '@effect/core/io/Effect'
|
|
4
|
-
import { pipe } from '@fp-ts/data/Function'
|
|
5
4
|
import * as Duration from '@tsplus/stdlib/data/Duration'
|
|
5
|
+
import { pipe } from '@tsplus/stdlib/data/Function'
|
|
6
6
|
|
|
7
7
|
import * as Fx from './index.js'
|
|
8
8
|
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { deepStrictEqual } from 'assert'
|
|
2
2
|
|
|
3
3
|
import * as Effect from '@effect/core/io/Effect'
|
|
4
|
-
import { pipe } from '@fp-ts/data/Function'
|
|
5
4
|
import * as Duration from '@tsplus/stdlib/data/Duration'
|
|
5
|
+
import { pipe } from '@tsplus/stdlib/data/Function'
|
|
6
6
|
|
|
7
7
|
import * as Fx from './index.js'
|
|
8
8
|
|
package/src/fromFxEffect.ts
CHANGED
|
@@ -17,8 +17,8 @@ export function fromFxEffect<R, E, R2, E2, A>(
|
|
|
17
17
|
export function fromFxGen<Eff extends Effect.GenEffect<any, any, any>, R2, E2, A>(
|
|
18
18
|
f: (i: Effect.Adapter) => Generator<Eff, Fx<R2, E2, A>, any>,
|
|
19
19
|
): Fx<
|
|
20
|
-
[Eff] extends [{ [Effect._GenR]: () => infer R }] ? R : never | R2,
|
|
21
|
-
[Eff] extends [{ [Effect._GenE]: () => infer E }] ? E : never | E2,
|
|
20
|
+
([Eff] extends [{ [Effect._GenR]: () => infer R }] ? R : never) | R2,
|
|
21
|
+
([Eff] extends [{ [Effect._GenE]: () => infer E }] ? E : never) | E2,
|
|
22
22
|
A
|
|
23
23
|
> {
|
|
24
24
|
return fromFxEffect<
|
|
@@ -27,5 +27,5 @@ export function fromFxGen<Eff extends Effect.GenEffect<any, any, any>, R2, E2, A
|
|
|
27
27
|
R2,
|
|
28
28
|
E2,
|
|
29
29
|
A
|
|
30
|
-
>(Effect.gen(f))
|
|
30
|
+
>(Effect.gen(f))
|
|
31
31
|
}
|
package/src/hold.test.ts
CHANGED
|
@@ -2,8 +2,8 @@ import { deepStrictEqual } from 'assert'
|
|
|
2
2
|
|
|
3
3
|
import * as Effect from '@effect/core/io/Effect'
|
|
4
4
|
import * as Fiber from '@effect/core/io/Fiber'
|
|
5
|
-
import { pipe } from '@fp-ts/data/Function'
|
|
6
5
|
import * as Duration from '@tsplus/stdlib/data/Duration'
|
|
6
|
+
import { pipe } from '@tsplus/stdlib/data/Function'
|
|
7
7
|
|
|
8
8
|
import * as Fx from './index.js'
|
|
9
9
|
|
package/src/mapCause.test.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { deepEqual } from 'assert'
|
|
|
3
3
|
import * as Cause from '@effect/core/io/Cause'
|
|
4
4
|
import * as Effect from '@effect/core/io/Effect'
|
|
5
5
|
import * as Exit from '@effect/core/io/Exit'
|
|
6
|
-
import { pipe } from '@
|
|
6
|
+
import { pipe } from '@tsplus/stdlib/data/Function'
|
|
7
7
|
|
|
8
8
|
import * as Fx from './index.js'
|
|
9
9
|
|
package/src/mapEffect.test.ts
CHANGED
package/src/merge.test.ts
CHANGED
package/src/multicast.test.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { deepStrictEqual } from 'assert'
|
|
2
2
|
|
|
3
3
|
import * as Effect from '@effect/core/io/Effect'
|
|
4
|
-
import { pipe } from '@fp-ts/data/Function'
|
|
5
4
|
import * as Duration from '@tsplus/stdlib/data/Duration'
|
|
5
|
+
import { pipe } from '@tsplus/stdlib/data/Function'
|
|
6
6
|
|
|
7
7
|
import * as Fx from './index.js'
|
|
8
8
|
|
package/src/orElse.test.ts
CHANGED
package/src/periodic.test.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { deepStrictEqual } from 'assert'
|
|
2
2
|
|
|
3
3
|
import * as Effect from '@effect/core/io/Effect'
|
|
4
|
-
import { pipe } from '@fp-ts/data/Function'
|
|
5
4
|
import { millis } from '@tsplus/stdlib/data/Duration'
|
|
5
|
+
import { pipe } from '@tsplus/stdlib/data/Function'
|
|
6
6
|
|
|
7
7
|
import { periodic } from './periodic.js'
|
|
8
8
|
import { runCollect } from './runCollect.js'
|
package/src/provide.test.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { deepStrictEqual } from 'assert'
|
|
|
2
2
|
|
|
3
3
|
import * as Effect from '@effect/core/io/Effect'
|
|
4
4
|
import * as Scope from '@effect/core/io/Scope'
|
|
5
|
-
import { pipe } from '@
|
|
5
|
+
import { pipe } from '@tsplus/stdlib/data/Function'
|
|
6
6
|
import { Tag } from '@tsplus/stdlib/service/Tag'
|
|
7
7
|
|
|
8
8
|
import * as Fx from './index.js'
|
package/src/since.test.ts
CHANGED
|
@@ -4,8 +4,8 @@ import * as Effect from '@effect/core/io/Effect'
|
|
|
4
4
|
import * as Fiber from '@effect/core/io/Fiber'
|
|
5
5
|
import * as TestClock from '@effect/core/testing/TestClock'
|
|
6
6
|
import { TestEnvironment } from '@effect/core/testing/TestEnvironment'
|
|
7
|
-
import { pipe } from '@fp-ts/data/Function'
|
|
8
7
|
import { millis } from '@tsplus/stdlib/data/Duration'
|
|
8
|
+
import { pipe } from '@tsplus/stdlib/data/Function'
|
|
9
9
|
|
|
10
10
|
import * as Fx from './index.js'
|
|
11
11
|
|
package/src/skipRepeats.test.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { deepStrictEqual } from 'assert'
|
|
2
2
|
|
|
3
3
|
import * as Effect from '@effect/core/io/Effect'
|
|
4
|
-
import { pipe } from '@
|
|
4
|
+
import { pipe } from '@tsplus/stdlib/data/Function'
|
|
5
5
|
import * as Equivalence from '@tsplus/stdlib/prelude/Equivalence'
|
|
6
6
|
|
|
7
7
|
import * as Fx from './index.js'
|
package/src/skipWhile.test.ts
CHANGED
package/src/slice.test.ts
CHANGED
package/src/snapshot.test.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { deepStrictEqual } from 'assert'
|
|
2
2
|
|
|
3
3
|
import * as Effect from '@effect/core/io/Effect'
|
|
4
|
-
import { pipe } from '@fp-ts/data/Function'
|
|
5
4
|
import * as Duration from '@tsplus/stdlib/data/Duration'
|
|
5
|
+
import { pipe } from '@tsplus/stdlib/data/Function'
|
|
6
6
|
|
|
7
7
|
import * as Fx from './index.js'
|
|
8
8
|
|
package/src/switchMap.test.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { deepStrictEqual } from 'assert'
|
|
2
2
|
|
|
3
3
|
import * as Effect from '@effect/core/io/Effect'
|
|
4
|
-
import { pipe } from '@fp-ts/data/Function'
|
|
5
4
|
import * as Duration from '@tsplus/stdlib/data/Duration'
|
|
5
|
+
import { pipe } from '@tsplus/stdlib/data/Function'
|
|
6
6
|
|
|
7
7
|
import * as Fx from './index.js'
|
|
8
8
|
|
package/src/takeWhile.test.ts
CHANGED
package/src/throttle.test.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { deepStrictEqual } from 'assert'
|
|
2
2
|
|
|
3
3
|
import * as Effect from '@effect/core/io/Effect'
|
|
4
|
-
import { pipe } from '@fp-ts/data/Function'
|
|
5
4
|
import { millis } from '@tsplus/stdlib/data/Duration'
|
|
5
|
+
import { pipe } from '@tsplus/stdlib/data/Function'
|
|
6
6
|
|
|
7
7
|
import * as Fx from './index.js'
|
|
8
8
|
|
package/src/until.test.ts
CHANGED
|
@@ -4,8 +4,8 @@ import * as Effect from '@effect/core/io/Effect'
|
|
|
4
4
|
import * as Fiber from '@effect/core/io/Fiber'
|
|
5
5
|
import * as TestClock from '@effect/core/testing/TestClock'
|
|
6
6
|
import { TestEnvironment } from '@effect/core/testing/TestEnvironment'
|
|
7
|
-
import { pipe } from '@fp-ts/data/Function'
|
|
8
7
|
import { millis } from '@tsplus/stdlib/data/Duration'
|
|
8
|
+
import { pipe } from '@tsplus/stdlib/data/Function'
|
|
9
9
|
|
|
10
10
|
import * as Fx from './index.js'
|
|
11
11
|
|
package/src/withEmitter.test.ts
CHANGED
package/src/zip.test.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { deepStrictEqual } from 'assert'
|
|
2
2
|
|
|
3
3
|
import * as Effect from '@effect/core/io/Effect'
|
|
4
|
-
import { pipe } from '@fp-ts/data/Function'
|
|
5
4
|
import * as Duration from '@tsplus/stdlib/data/Duration'
|
|
5
|
+
import { pipe } from '@tsplus/stdlib/data/Function'
|
|
6
6
|
|
|
7
7
|
import * as Fx from './index.js'
|
|
8
8
|
|
package/src/zipIterable.test.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { deepStrictEqual } from 'assert'
|
|
2
2
|
|
|
3
3
|
import * as Effect from '@effect/core/io/Effect'
|
|
4
|
-
import { pipe } from '@fp-ts/data/Function'
|
|
5
4
|
import * as Duration from '@tsplus/stdlib/data/Duration'
|
|
5
|
+
import { pipe } from '@tsplus/stdlib/data/Function'
|
|
6
6
|
|
|
7
7
|
import * as Fx from './index.js'
|
|
8
8
|
|
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
import tablemark from 'tablemark'
|
|
2
|
+
|
|
3
|
+
export interface PerformanceTestCase<A> {
|
|
4
|
+
readonly name: string
|
|
5
|
+
readonly init: () => A
|
|
6
|
+
readonly run: (a: A) => unknown | Promise<unknown>
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
export function PerformanceTestCase<A>(
|
|
10
|
+
name: string,
|
|
11
|
+
init: () => A,
|
|
12
|
+
run: (a: A) => Promise<unknown>,
|
|
13
|
+
): PerformanceTestCase<A> {
|
|
14
|
+
return { name, init, run }
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export interface TestStats {
|
|
18
|
+
readonly average: number
|
|
19
|
+
readonly min: number
|
|
20
|
+
readonly max: number
|
|
21
|
+
readonly timeToInit: number
|
|
22
|
+
readonly overhead: number
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
export function TestStats(
|
|
26
|
+
average: number,
|
|
27
|
+
min: number,
|
|
28
|
+
max: number,
|
|
29
|
+
timeToInit: number,
|
|
30
|
+
overhead: number,
|
|
31
|
+
): TestStats {
|
|
32
|
+
return { average, min, max, timeToInit, overhead }
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
export interface TestSuite {
|
|
36
|
+
readonly name: string
|
|
37
|
+
readonly tests: ReadonlyArray<PerformanceTestCase<any>>
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
export function TestSuite(name: string, tests: ReadonlyArray<PerformanceTestCase<any>>): TestSuite {
|
|
41
|
+
return { name, tests }
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
export interface TestSuiteResult {
|
|
45
|
+
readonly name: string
|
|
46
|
+
readonly stats: Readonly<Record<string, TestStats>>
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
export function TestSuiteResult(
|
|
50
|
+
name: string,
|
|
51
|
+
stats: Readonly<Record<string, TestStats>>,
|
|
52
|
+
): TestSuiteResult {
|
|
53
|
+
return { name, stats }
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
export interface RunTestConfig {
|
|
57
|
+
readonly iterations: number
|
|
58
|
+
readonly getTime: () => number
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
export function RunTestConfig(iterations: number, getTime: () => number): RunTestConfig {
|
|
62
|
+
return { iterations, getTime }
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
export function runTestCaseWith(config: RunTestConfig) {
|
|
66
|
+
return async <A>(test: PerformanceTestCase<A>): Promise<Readonly<Record<string, TestStats>>> => {
|
|
67
|
+
const { iterations, getTime } = config
|
|
68
|
+
const initStartTime = getTime()
|
|
69
|
+
const init = test.init()
|
|
70
|
+
const initEndTime = getTime()
|
|
71
|
+
|
|
72
|
+
let total = 0
|
|
73
|
+
let min = Infinity
|
|
74
|
+
let max = 0
|
|
75
|
+
|
|
76
|
+
console.log(`Running ${test.name}...`)
|
|
77
|
+
|
|
78
|
+
for (let i = 0; i < iterations; i++) {
|
|
79
|
+
console.log(`Running ${test.name} (${i + 1} of ${iterations})`)
|
|
80
|
+
const startTime = getTime()
|
|
81
|
+
await test.run(init)
|
|
82
|
+
const endTime = getTime()
|
|
83
|
+
const elapsed = endTime - startTime
|
|
84
|
+
|
|
85
|
+
total += elapsed
|
|
86
|
+
|
|
87
|
+
if (elapsed < min) {
|
|
88
|
+
min = elapsed
|
|
89
|
+
} else if (elapsed > max) {
|
|
90
|
+
max = elapsed
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
return {
|
|
95
|
+
[test.name]: TestStats(
|
|
96
|
+
roundNumber(total / iterations),
|
|
97
|
+
roundNumber(min),
|
|
98
|
+
roundNumber(max),
|
|
99
|
+
roundNumber(initEndTime - initStartTime),
|
|
100
|
+
-1,
|
|
101
|
+
),
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
export async function runTestSuite(
|
|
107
|
+
suite: TestSuite,
|
|
108
|
+
config: RunTestConfig,
|
|
109
|
+
): Promise<TestSuiteResult> {
|
|
110
|
+
let results: Record<string, TestStats> = {}
|
|
111
|
+
const runTestCase = runTestCaseWith(config)
|
|
112
|
+
|
|
113
|
+
console.log(`\n\nRunning ${suite.name}...`)
|
|
114
|
+
await new Promise((resolve) => setTimeout(resolve, 1000))
|
|
115
|
+
|
|
116
|
+
for (const test of suite.tests) {
|
|
117
|
+
results = { ...results, ...(await runTestCase(test)) }
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
return TestSuiteResult(suite.name, addPercentile(results))
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
function roundNumber(n: number): number {
|
|
124
|
+
return parseFloat(n.toFixed(4))
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
function addPercentile(
|
|
128
|
+
stats: Readonly<Record<string, TestStats>>,
|
|
129
|
+
): Readonly<Record<string, TestStats>> {
|
|
130
|
+
const newStats: Record<string, TestStats> = {}
|
|
131
|
+
|
|
132
|
+
const fastestToSlowest = Object.entries(stats).sort(([, a], [, b]) => a.average - b.average)
|
|
133
|
+
const fastestTime = fastestToSlowest[0][1].average
|
|
134
|
+
|
|
135
|
+
for (let i = 0; i < fastestToSlowest.length; ++i) {
|
|
136
|
+
const [name, stat] = fastestToSlowest[i]
|
|
137
|
+
newStats[name] = TestStats(
|
|
138
|
+
stat.average,
|
|
139
|
+
stat.min,
|
|
140
|
+
stat.max,
|
|
141
|
+
stat.timeToInit,
|
|
142
|
+
roundNumber(stat.average / fastestTime),
|
|
143
|
+
)
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
return newStats
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
export function printTestSuiteResult(result: TestSuiteResult): string {
|
|
150
|
+
return `## ${result.name}
|
|
151
|
+
|
|
152
|
+
${tablemark(
|
|
153
|
+
Object.entries(result.stats).map(([library, stats]) => ({
|
|
154
|
+
library,
|
|
155
|
+
...stats,
|
|
156
|
+
})),
|
|
157
|
+
)}
|
|
158
|
+
`
|
|
159
|
+
}
|