forked from indongyoo/Kakao-functional-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfx.0.10.1.js
2226 lines (1431 loc) · 65.5 KB
/
fx.0.10.1.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
/******/
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
/******/
/******/ // Check if module is in cache
/******/ if(installedModules[moduleId]) {
/******/ return installedModules[moduleId].exports;
/******/ }
/******/ // Create a new module (and put it into the cache)
/******/ var module = installedModules[moduleId] = {
/******/ i: moduleId,
/******/ l: false,
/******/ exports: {}
/******/ };
/******/
/******/ // Execute the module function
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
/******/
/******/ // Flag the module as loaded
/******/ module.l = true;
/******/
/******/ // Return the exports of the module
/******/ return module.exports;
/******/ }
/******/
/******/
/******/ // expose the modules object (__webpack_modules__)
/******/ __webpack_require__.m = modules;
/******/
/******/ // expose the module cache
/******/ __webpack_require__.c = installedModules;
/******/
/******/ // define getter function for harmony exports
/******/ __webpack_require__.d = function(exports, name, getter) {
/******/ if(!__webpack_require__.o(exports, name)) {
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
/******/ }
/******/ };
/******/
/******/ // define __esModule on exports
/******/ __webpack_require__.r = function(exports) {
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
/******/ }
/******/ Object.defineProperty(exports, '__esModule', { value: true });
/******/ };
/******/
/******/ // create a fake namespace object
/******/ // mode & 1: value is a module id, require it
/******/ // mode & 2: merge all properties of value into the ns
/******/ // mode & 4: return value when already ns object
/******/ // mode & 8|1: behave like require
/******/ __webpack_require__.t = function(value, mode) {
/******/ if(mode & 1) value = __webpack_require__(value);
/******/ if(mode & 8) return value;
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
/******/ var ns = Object.create(null);
/******/ __webpack_require__.r(ns);
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
/******/ return ns;
/******/ };
/******/
/******/ // getDefaultExport function for compatibility with non-harmony modules
/******/ __webpack_require__.n = function(module) {
/******/ var getter = module && module.__esModule ?
/******/ function getDefault() { return module['default']; } :
/******/ function getModuleExports() { return module; };
/******/ __webpack_require__.d(getter, 'a', getter);
/******/ return getter;
/******/ };
/******/
/******/ // Object.prototype.hasOwnProperty.call
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
/******/
/******/ // __webpack_public_path__
/******/ __webpack_require__.p = "";
/******/
/******/
/******/ // Load entry module and return exports
/******/ return __webpack_require__(__webpack_require__.s = 0);
/******/ })
/************************************************************************/
/******/ ([
/* 0 */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
var Strict_namespaceObject = {};
__webpack_require__.r(Strict_namespaceObject);
__webpack_require__.d(Strict_namespaceObject, "add", function() { return add; });
__webpack_require__.d(Strict_namespaceObject, "append", function() { return Strict_append; });
__webpack_require__.d(Strict_namespaceObject, "apply", function() { return apply; });
__webpack_require__.d(Strict_namespaceObject, "baseSel", function() { return baseSel; });
__webpack_require__.d(Strict_namespaceObject, "base_sel", function() { return baseSel; });
__webpack_require__.d(Strict_namespaceObject, "call", function() { return call; });
__webpack_require__.d(Strict_namespaceObject, "calls", function() { return Strict_calls; });
__webpack_require__.d(Strict_namespaceObject, "chunk", function() { return Strict_chunk; });
__webpack_require__.d(Strict_namespaceObject, "compact", function() { return compact; });
__webpack_require__.d(Strict_namespaceObject, "constant", function() { return constant; });
__webpack_require__.d(Strict_namespaceObject, "countBy", function() { return Strict_countBy; });
__webpack_require__.d(Strict_namespaceObject, "count_by", function() { return Strict_countBy; });
__webpack_require__.d(Strict_namespaceObject, "curry", function() { return curry; });
__webpack_require__.d(Strict_namespaceObject, "debounce", function() { return Strict_debounce; });
__webpack_require__.d(Strict_namespaceObject, "deepFlat", function() { return deepFlat; });
__webpack_require__.d(Strict_namespaceObject, "deepFlatten", function() { return deepFlat; });
__webpack_require__.d(Strict_namespaceObject, "deep_flat", function() { return deepFlat; });
__webpack_require__.d(Strict_namespaceObject, "deep_flatten", function() { return deepFlat; });
__webpack_require__.d(Strict_namespaceObject, "defaults", function() { return Strict_defaults; });
__webpack_require__.d(Strict_namespaceObject, "defaultTo", function() { return defaultTo; });
__webpack_require__.d(Strict_namespaceObject, "default_to", function() { return defaultTo; });
__webpack_require__.d(Strict_namespaceObject, "delay", function() { return delay; });
__webpack_require__.d(Strict_namespaceObject, "difference", function() { return Strict_difference; });
__webpack_require__.d(Strict_namespaceObject, "differenceBy", function() { return Strict_differenceBy; });
__webpack_require__.d(Strict_namespaceObject, "difference_by", function() { return Strict_differenceBy; });
__webpack_require__.d(Strict_namespaceObject, "differenceWith", function() { return Strict_differenceWith; });
__webpack_require__.d(Strict_namespaceObject, "difference_with", function() { return Strict_differenceWith; });
__webpack_require__.d(Strict_namespaceObject, "drop", function() { return Strict_drop; });
__webpack_require__.d(Strict_namespaceObject, "dropRight", function() { return dropRight; });
__webpack_require__.d(Strict_namespaceObject, "drop_right", function() { return dropRight; });
__webpack_require__.d(Strict_namespaceObject, "dropUntil", function() { return dropUntil; });
__webpack_require__.d(Strict_namespaceObject, "drop_until", function() { return dropUntil; });
__webpack_require__.d(Strict_namespaceObject, "dropWhile", function() { return Strict_dropWhile; });
__webpack_require__.d(Strict_namespaceObject, "drop_while", function() { return Strict_dropWhile; });
__webpack_require__.d(Strict_namespaceObject, "each", function() { return Strict_each; });
__webpack_require__.d(Strict_namespaceObject, "forEach", function() { return Strict_each; });
__webpack_require__.d(Strict_namespaceObject, "entries", function() { return entries_entries; });
__webpack_require__.d(Strict_namespaceObject, "every", function() { return Strict_every; });
__webpack_require__.d(Strict_namespaceObject, "extend", function() { return extend; });
__webpack_require__.d(Strict_namespaceObject, "filter", function() { return Strict_filter; });
__webpack_require__.d(Strict_namespaceObject, "find", function() { return Strict_find; });
__webpack_require__.d(Strict_namespaceObject, "findWhere", function() { return Strict_findWhere; });
__webpack_require__.d(Strict_namespaceObject, "find_where", function() { return Strict_findWhere; });
__webpack_require__.d(Strict_namespaceObject, "flat", function() { return flat; });
__webpack_require__.d(Strict_namespaceObject, "flatten", function() { return flat; });
__webpack_require__.d(Strict_namespaceObject, "flatMap", function() { return Strict_flatMap; });
__webpack_require__.d(Strict_namespaceObject, "flat_map", function() { return Strict_flatMap; });
__webpack_require__.d(Strict_namespaceObject, "go", function() { return go; });
__webpack_require__.d(Strict_namespaceObject, "go1", function() { return go1; });
__webpack_require__.d(Strict_namespaceObject, "goS", function() { return goS; });
__webpack_require__.d(Strict_namespaceObject, "groupBy", function() { return Strict_groupBy; });
__webpack_require__.d(Strict_namespaceObject, "group_by", function() { return Strict_groupBy; });
__webpack_require__.d(Strict_namespaceObject, "has", function() { return has; });
__webpack_require__.d(Strict_namespaceObject, "head", function() { return head; });
__webpack_require__.d(Strict_namespaceObject, "hi", function() { return hi; });
__webpack_require__.d(Strict_namespaceObject, "html", function() { return html; });
__webpack_require__.d(Strict_namespaceObject, "identity", function() { return identity; });
__webpack_require__.d(Strict_namespaceObject, "indexBy", function() { return Strict_indexBy; });
__webpack_require__.d(Strict_namespaceObject, "index_by", function() { return Strict_indexBy; });
__webpack_require__.d(Strict_namespaceObject, "initial", function() { return initial; });
__webpack_require__.d(Strict_namespaceObject, "intersection", function() { return Strict_intersection; });
__webpack_require__.d(Strict_namespaceObject, "intersectionBy", function() { return Strict_intersectionBy; });
__webpack_require__.d(Strict_namespaceObject, "intersection_by", function() { return Strict_intersectionBy; });
__webpack_require__.d(Strict_namespaceObject, "intersectionWith", function() { return Strict_intersectionWith; });
__webpack_require__.d(Strict_namespaceObject, "intersection_with", function() { return Strict_intersectionWith; });
__webpack_require__.d(Strict_namespaceObject, "isArray", function() { return Strict_isArray; });
__webpack_require__.d(Strict_namespaceObject, "is_array", function() { return Strict_isArray; });
__webpack_require__.d(Strict_namespaceObject, "isFunction", function() { return isFunction; });
__webpack_require__.d(Strict_namespaceObject, "is_function", function() { return isFunction; });
__webpack_require__.d(Strict_namespaceObject, "isIterable", function() { return isIterable; });
__webpack_require__.d(Strict_namespaceObject, "is_iterable", function() { return isIterable; });
__webpack_require__.d(Strict_namespaceObject, "isMatch", function() { return Strict_isMatch; });
__webpack_require__.d(Strict_namespaceObject, "is_match", function() { return Strict_isMatch; });
__webpack_require__.d(Strict_namespaceObject, "isStop", function() { return isStop; });
__webpack_require__.d(Strict_namespaceObject, "is_stop", function() { return isStop; });
__webpack_require__.d(Strict_namespaceObject, "isString", function() { return isString; });
__webpack_require__.d(Strict_namespaceObject, "is_string", function() { return isString; });
__webpack_require__.d(Strict_namespaceObject, "isUndefined", function() { return isUndefined; });
__webpack_require__.d(Strict_namespaceObject, "is_undefined", function() { return isUndefined; });
__webpack_require__.d(Strict_namespaceObject, "join", function() { return Strict_join; });
__webpack_require__.d(Strict_namespaceObject, "keys", function() { return keys; });
__webpack_require__.d(Strict_namespaceObject, "last", function() { return last; });
__webpack_require__.d(Strict_namespaceObject, "log", function() { return Strict_log; });
__webpack_require__.d(Strict_namespaceObject, "map", function() { return Strict_map; });
__webpack_require__.d(Strict_namespaceObject, "mapEntries", function() { return Strict_mapEntries; });
__webpack_require__.d(Strict_namespaceObject, "map_entries", function() { return Strict_mapEntries; });
__webpack_require__.d(Strict_namespaceObject, "entriesMap", function() { return Strict_mapEntries; });
__webpack_require__.d(Strict_namespaceObject, "entries_map", function() { return Strict_mapEntries; });
__webpack_require__.d(Strict_namespaceObject, "mapObject", function() { return Strict_mapObject; });
__webpack_require__.d(Strict_namespaceObject, "map_object", function() { return Strict_mapObject; });
__webpack_require__.d(Strict_namespaceObject, "match", function() { return Strict_match; });
__webpack_require__.d(Strict_namespaceObject, "max", function() { return max; });
__webpack_require__.d(Strict_namespaceObject, "maxBy", function() { return Strict_maxBy; });
__webpack_require__.d(Strict_namespaceObject, "max_by", function() { return Strict_maxBy; });
__webpack_require__.d(Strict_namespaceObject, "min", function() { return min; });
__webpack_require__.d(Strict_namespaceObject, "minBy", function() { return Strict_minBy; });
__webpack_require__.d(Strict_namespaceObject, "min_by", function() { return Strict_minBy; });
__webpack_require__.d(Strict_namespaceObject, "negate", function() { return negate; });
__webpack_require__.d(Strict_namespaceObject, "noop", function() { return noop; });
__webpack_require__.d(Strict_namespaceObject, "nop", function() { return Strict_nop; });
__webpack_require__.d(Strict_namespaceObject, "not", function() { return not; });
__webpack_require__.d(Strict_namespaceObject, "object", function() { return object_object; });
__webpack_require__.d(Strict_namespaceObject, "fromEntries", function() { return object_object; });
__webpack_require__.d(Strict_namespaceObject, "from_entries", function() { return object_object; });
__webpack_require__.d(Strict_namespaceObject, "omit", function() { return Strict_omit; });
__webpack_require__.d(Strict_namespaceObject, "partition", function() { return Strict_partition; });
__webpack_require__.d(Strict_namespaceObject, "pick", function() { return Strict_pick; });
__webpack_require__.d(Strict_namespaceObject, "pipe", function() { return pipe; });
__webpack_require__.d(Strict_namespaceObject, "pipe1", function() { return pipe1; });
__webpack_require__.d(Strict_namespaceObject, "pipeS", function() { return pipeS; });
__webpack_require__.d(Strict_namespaceObject, "pluck", function() { return Strict_pluck; });
__webpack_require__.d(Strict_namespaceObject, "prepend", function() { return Strict_prepend; });
__webpack_require__.d(Strict_namespaceObject, "promiseAllEntries", function() { return promiseAllEntries; });
__webpack_require__.d(Strict_namespaceObject, "promise_all_entries", function() { return promiseAllEntries; });
__webpack_require__.d(Strict_namespaceObject, "promiseAllObject", function() { return promiseAllObject; });
__webpack_require__.d(Strict_namespaceObject, "promise_all_object", function() { return promiseAllObject; });
__webpack_require__.d(Strict_namespaceObject, "range", function() { return range; });
__webpack_require__.d(Strict_namespaceObject, "reduce", function() { return reduce; });
__webpack_require__.d(Strict_namespaceObject, "reduceS", function() { return reduceS; });
__webpack_require__.d(Strict_namespaceObject, "reject", function() { return Strict_reject; });
__webpack_require__.d(Strict_namespaceObject, "sel", function() { return Strict_sel; });
__webpack_require__.d(Strict_namespaceObject, "some", function() { return Strict_some; });
__webpack_require__.d(Strict_namespaceObject, "sort", function() { return sort; });
__webpack_require__.d(Strict_namespaceObject, "sortBy", function() { return Strict_sortBy; });
__webpack_require__.d(Strict_namespaceObject, "sort_by", function() { return Strict_sortBy; });
__webpack_require__.d(Strict_namespaceObject, "sortByDesc", function() { return Strict_sortByDesc; });
__webpack_require__.d(Strict_namespaceObject, "sort_by_desc", function() { return Strict_sortByDesc; });
__webpack_require__.d(Strict_namespaceObject, "sortDesc", function() { return sortDesc_sort; });
__webpack_require__.d(Strict_namespaceObject, "sort_desc", function() { return sortDesc_sort; });
__webpack_require__.d(Strict_namespaceObject, "split", function() { return split; });
__webpack_require__.d(Strict_namespaceObject, "splitEvery", function() { return Strict_splitEvery; });
__webpack_require__.d(Strict_namespaceObject, "split_every", function() { return Strict_splitEvery; });
__webpack_require__.d(Strict_namespaceObject, "stop", function() { return stop; });
__webpack_require__.d(Strict_namespaceObject, "stopIf", function() { return stopIf; });
__webpack_require__.d(Strict_namespaceObject, "stop_if", function() { return stopIf; });
__webpack_require__.d(Strict_namespaceObject, "string", function() { return string; });
__webpack_require__.d(Strict_namespaceObject, "strMap", function() { return Strict_strMap; });
__webpack_require__.d(Strict_namespaceObject, "str_map", function() { return Strict_strMap; });
__webpack_require__.d(Strict_namespaceObject, "scat", function() { return Strict_strMap; });
__webpack_require__.d(Strict_namespaceObject, "tail", function() { return tail; });
__webpack_require__.d(Strict_namespaceObject, "rest", function() { return tail; });
__webpack_require__.d(Strict_namespaceObject, "take", function() { return Strict_take; });
__webpack_require__.d(Strict_namespaceObject, "take1", function() { return Strict_take1; });
__webpack_require__.d(Strict_namespaceObject, "takeAll", function() { return takeAll; });
__webpack_require__.d(Strict_namespaceObject, "take_all", function() { return takeAll; });
__webpack_require__.d(Strict_namespaceObject, "takeUntil", function() { return Strict_takeUntil; });
__webpack_require__.d(Strict_namespaceObject, "take_until", function() { return Strict_takeUntil; });
__webpack_require__.d(Strict_namespaceObject, "takeWhile", function() { return Strict_takeWhile; });
__webpack_require__.d(Strict_namespaceObject, "take_while", function() { return Strict_takeWhile; });
__webpack_require__.d(Strict_namespaceObject, "tap", function() { return tap; });
__webpack_require__.d(Strict_namespaceObject, "throttle", function() { return Strict_throttle; });
__webpack_require__.d(Strict_namespaceObject, "toIter", function() { return toIter; });
__webpack_require__.d(Strict_namespaceObject, "to_iter", function() { return toIter; });
__webpack_require__.d(Strict_namespaceObject, "union", function() { return Strict_union; });
__webpack_require__.d(Strict_namespaceObject, "unionBy", function() { return Strict_unionBy; });
__webpack_require__.d(Strict_namespaceObject, "union_by", function() { return Strict_unionBy; });
__webpack_require__.d(Strict_namespaceObject, "unique", function() { return unique; });
__webpack_require__.d(Strict_namespaceObject, "uniq", function() { return unique; });
__webpack_require__.d(Strict_namespaceObject, "uniqueBy", function() { return Strict_uniqueBy; });
__webpack_require__.d(Strict_namespaceObject, "unique_by", function() { return Strict_uniqueBy; });
__webpack_require__.d(Strict_namespaceObject, "unzip", function() { return unzip; });
__webpack_require__.d(Strict_namespaceObject, "values", function() { return values; });
__webpack_require__.d(Strict_namespaceObject, "zip", function() { return Strict_zip; });
__webpack_require__.d(Strict_namespaceObject, "zipObj", function() { return Strict_zipObj; });
__webpack_require__.d(Strict_namespaceObject, "zip_obj", function() { return Strict_zipObj; });
__webpack_require__.d(Strict_namespaceObject, "zipWith", function() { return Strict_zipWith; });
__webpack_require__.d(Strict_namespaceObject, "zip_with", function() { return Strict_zipWith; });
var Lazy_namespaceObject = {};
__webpack_require__.r(Lazy_namespaceObject);
__webpack_require__.d(Lazy_namespaceObject, "append", function() { return appendLazy; });
__webpack_require__.d(Lazy_namespaceObject, "chunk", function() { return Lazy_chunkLazy; });
__webpack_require__.d(Lazy_namespaceObject, "compact", function() { return compactLazy; });
__webpack_require__.d(Lazy_namespaceObject, "concat", function() { return concatLazy; });
__webpack_require__.d(Lazy_namespaceObject, "constant", function() { return constantLazy; });
__webpack_require__.d(Lazy_namespaceObject, "deepFlat", function() { return deepFlatLazy; });
__webpack_require__.d(Lazy_namespaceObject, "deep_flat", function() { return deepFlatLazy; });
__webpack_require__.d(Lazy_namespaceObject, "deepFlatten", function() { return deepFlatLazy; });
__webpack_require__.d(Lazy_namespaceObject, "deep_flatten", function() { return deepFlatLazy; });
__webpack_require__.d(Lazy_namespaceObject, "difference", function() { return Lazy_differenceLazy; });
__webpack_require__.d(Lazy_namespaceObject, "differenceWith", function() { return Lazy_differenceWithLazy; });
__webpack_require__.d(Lazy_namespaceObject, "difference_with", function() { return Lazy_differenceWithLazy; });
__webpack_require__.d(Lazy_namespaceObject, "differenceBy", function() { return Lazy_differenceByLazy; });
__webpack_require__.d(Lazy_namespaceObject, "difference_by", function() { return Lazy_differenceByLazy; });
__webpack_require__.d(Lazy_namespaceObject, "drop", function() { return Lazy_dropLazy; });
__webpack_require__.d(Lazy_namespaceObject, "dropUntil", function() { return Lazy_dropUntilLazy; });
__webpack_require__.d(Lazy_namespaceObject, "drop_until", function() { return Lazy_dropUntilLazy; });
__webpack_require__.d(Lazy_namespaceObject, "dropWhile", function() { return Lazy_dropWhileLazy; });
__webpack_require__.d(Lazy_namespaceObject, "drop_while", function() { return Lazy_dropWhileLazy; });
__webpack_require__.d(Lazy_namespaceObject, "empty", function() { return emptyLazy; });
__webpack_require__.d(Lazy_namespaceObject, "entries", function() { return entriesLazy; });
__webpack_require__.d(Lazy_namespaceObject, "filter", function() { return Lazy_filterLazy; });
__webpack_require__.d(Lazy_namespaceObject, "flat", function() { return flatLazy; });
__webpack_require__.d(Lazy_namespaceObject, "flatMap", function() { return Lazy_flatMapLazy; });
__webpack_require__.d(Lazy_namespaceObject, "flat_map", function() { return Lazy_flatMapLazy; });
__webpack_require__.d(Lazy_namespaceObject, "zipIndexs", function() { return zipIndexs; });
__webpack_require__.d(Lazy_namespaceObject, "zip_indexs", function() { return zipIndexs; });
__webpack_require__.d(Lazy_namespaceObject, "indexValues", function() { return zipIndexs; });
__webpack_require__.d(Lazy_namespaceObject, "index_values", function() { return zipIndexs; });
__webpack_require__.d(Lazy_namespaceObject, "intersection", function() { return Lazy_intersectionLazy; });
__webpack_require__.d(Lazy_namespaceObject, "intersectionWith", function() { return Lazy_intersectionWithLazy; });
__webpack_require__.d(Lazy_namespaceObject, "intersection_with", function() { return Lazy_intersectionWithLazy; });
__webpack_require__.d(Lazy_namespaceObject, "intersectionBy", function() { return Lazy_intersectionByLazy; });
__webpack_require__.d(Lazy_namespaceObject, "intersection_by", function() { return Lazy_intersectionByLazy; });
__webpack_require__.d(Lazy_namespaceObject, "interval", function() { return intervalLazy; });
__webpack_require__.d(Lazy_namespaceObject, "keys", function() { return keysLazy; });
__webpack_require__.d(Lazy_namespaceObject, "mapEntries", function() { return Lazy_mapEntriesLazy; });
__webpack_require__.d(Lazy_namespaceObject, "map_entries", function() { return Lazy_mapEntriesLazy; });
__webpack_require__.d(Lazy_namespaceObject, "map", function() { return Lazy_mapLazy; });
__webpack_require__.d(Lazy_namespaceObject, "prepend", function() { return prependLazy; });
__webpack_require__.d(Lazy_namespaceObject, "range", function() { return rangeLazy; });
__webpack_require__.d(Lazy_namespaceObject, "reject", function() { return Lazy_rejectLazy; });
__webpack_require__.d(Lazy_namespaceObject, "reverse", function() { return reverseLazy; });
__webpack_require__.d(Lazy_namespaceObject, "splitEvery", function() { return Lazy_splitEveryLazy; });
__webpack_require__.d(Lazy_namespaceObject, "split_every", function() { return Lazy_splitEveryLazy; });
__webpack_require__.d(Lazy_namespaceObject, "take", function() { return Lazy_takeLazy; });
__webpack_require__.d(Lazy_namespaceObject, "takeWhile", function() { return Lazy_takeWhileLazy; });
__webpack_require__.d(Lazy_namespaceObject, "take_while", function() { return Lazy_takeWhileLazy; });
__webpack_require__.d(Lazy_namespaceObject, "takeUntil", function() { return Lazy_takeUntilLazy; });
__webpack_require__.d(Lazy_namespaceObject, "take_until", function() { return Lazy_takeUntilLazy; });
__webpack_require__.d(Lazy_namespaceObject, "unionBy", function() { return Lazy_unionByLazy; });
__webpack_require__.d(Lazy_namespaceObject, "union_by", function() { return Lazy_unionByLazy; });
__webpack_require__.d(Lazy_namespaceObject, "union", function() { return Lazy_unionLazy; });
__webpack_require__.d(Lazy_namespaceObject, "uniqueBy", function() { return Lazy_uniqueByLazy; });
__webpack_require__.d(Lazy_namespaceObject, "unique_by", function() { return Lazy_uniqueByLazy; });
__webpack_require__.d(Lazy_namespaceObject, "unique", function() { return uniqueLazy; });
__webpack_require__.d(Lazy_namespaceObject, "values", function() { return valuesLazy; });
__webpack_require__.d(Lazy_namespaceObject, "zip", function() { return Lazy_zipLazy; });
var Concurrency_namespaceObject = {};
__webpack_require__.r(Concurrency_namespaceObject);
__webpack_require__.d(Concurrency_namespaceObject, "calls", function() { return callsC; });
__webpack_require__.d(Concurrency_namespaceObject, "compact", function() { return compactC; });
__webpack_require__.d(Concurrency_namespaceObject, "drop", function() { return Concurrency_dropC; });
__webpack_require__.d(Concurrency_namespaceObject, "every", function() { return Concurrency_everyC; });
__webpack_require__.d(Concurrency_namespaceObject, "filter", function() { return Concurrency_filterC; });
__webpack_require__.d(Concurrency_namespaceObject, "find", function() { return Concurrency_findC; });
__webpack_require__.d(Concurrency_namespaceObject, "head", function() { return headC; });
__webpack_require__.d(Concurrency_namespaceObject, "map", function() { return Concurrency_mapC; });
__webpack_require__.d(Concurrency_namespaceObject, "mapEntries", function() { return Concurrency_mapEntriesC; });
__webpack_require__.d(Concurrency_namespaceObject, "object", function() { return objectC; });
__webpack_require__.d(Concurrency_namespaceObject, "fromEntries", function() { return objectC; });
__webpack_require__.d(Concurrency_namespaceObject, "from_entries", function() { return objectC; });
__webpack_require__.d(Concurrency_namespaceObject, "race", function() { return raceC; });
__webpack_require__.d(Concurrency_namespaceObject, "reduce", function() { return Concurrency_reduceC; });
__webpack_require__.d(Concurrency_namespaceObject, "some", function() { return Concurrency_someC; });
__webpack_require__.d(Concurrency_namespaceObject, "tail", function() { return tailC; });
__webpack_require__.d(Concurrency_namespaceObject, "take1", function() { return take1C; });
__webpack_require__.d(Concurrency_namespaceObject, "takeAll", function() { return takeAllC; });
__webpack_require__.d(Concurrency_namespaceObject, "take", function() { return Concurrency_takeC; });
__webpack_require__.d(Concurrency_namespaceObject, "takeRace", function() { return Concurrency_takeRaceC; });
// CONCATENATED MODULE: ./Strict/curry.js
function curry(f) {
return (a, ..._) => _.length < 1 ? (..._) => f(a, ..._) : f(a, ..._);
}
// CONCATENATED MODULE: ./Strict/add.js
/* harmony default export */ var add = (curry(function add(a, b) {
return a + b;
}));
// CONCATENATED MODULE: ./Lazy/emptyLazy.js
const emptyIter = (function *() {} ());
function emptyLazy() { return emptyIter; };
// CONCATENATED MODULE: ./Strict/toIter.js
function toIter(iterable) {
return iterable && iterable[Symbol.iterator] ? iterable[Symbol.iterator]() : emptyLazy();
}
// CONCATENATED MODULE: ./Strict/nop.js
const nop = Symbol.for('nop');
/* harmony default export */ var Strict_nop = (nop);
// CONCATENATED MODULE: ./Strict/take.js
/* harmony default export */ var Strict_take = (curry(function take(l, iter) {
if (l < 1) return [];
let res = [];
iter = toIter(iter);
return function recur() {
let cur;
while (!(cur = iter.next()).done) {
const a = cur.value;
if (a instanceof Promise) {
return a
.then(a => (res.push(a), res).length == l ? res : recur())
.catch(e => e == Strict_nop ? recur() : Promise.reject(e));
}
res.push(a);
if (res.length == l) return res;
}
return res;
} ();
}));
// CONCATENATED MODULE: ./Strict/takeAll.js
function takeAll(iter) {
return Strict_take(Infinity, iter);
}
// CONCATENATED MODULE: ./Lazy/appendLazy.js
/* harmony default export */ var appendLazy = (curry(function *appendLazy(a, iter) {
yield* iter;
yield a;
}));
// CONCATENATED MODULE: ./Strict/append.js
/* harmony default export */ var Strict_append = (curry(function append(a, iter) {
return takeAll(appendLazy(a, iter));
}));
// CONCATENATED MODULE: ./Strict/apply.js
/* harmony default export */ var apply = (curry(function apply(f, iter) {
return f(...iter);
}));
// CONCATENATED MODULE: ./Strict/isArray.js
const { isArray } = Array;
/* harmony default export */ var Strict_isArray = (isArray);
// CONCATENATED MODULE: ./Strict/go1.js
/* harmony default export */ var go1 = ((a, f) => a instanceof Promise ? a.then(f) : f(a));
// CONCATENATED MODULE: ./.internal/go2.js
function go2(acc, a, f){
return a instanceof Promise ?
a.then(a => f(acc, a), e => e == Strict_nop ? acc : Promise.reject(e)) :
f(acc, a);
}
// CONCATENATED MODULE: ./Strict/head.js
function head(iter) {
return go1(Strict_take(1, iter), ([h]) => h);
}
// CONCATENATED MODULE: ./Strict/reduce.js
function reduce(f, acc, iter) {
if (arguments.length == 1) return (..._) => reduce(f, ..._);
if (arguments.length == 2) return reduce(f, head(iter = toIter(acc)), iter);
iter = toIter(iter);
return go1(acc, function recur(acc) {
let cur;
while (!(cur = iter.next()).done) {
acc = go2(acc, cur.value, f);
if (acc instanceof Promise) return acc.then(recur);
}
return acc;
});
}
// CONCATENATED MODULE: ./Lazy/filterLazy.js
/* harmony default export */ var Lazy_filterLazy = (curry(function* filterLazy(f, iter) {
for (const a of toIter(iter)) {
const b = go1(a, f);
if (b instanceof Promise) yield b.then(b => b ? a : Promise.reject(Strict_nop));
else if (b) yield a;
}
}));
// CONCATENATED MODULE: ./Strict/find.js
/* harmony default export */ var Strict_find = (curry(function find(f, iter) {
return head(Lazy_filterLazy(f, iter));
}));
// CONCATENATED MODULE: ./.internal/go1Sync.js
/* harmony default export */ var go1Sync = ((a, f) => f(a));
// CONCATENATED MODULE: ./Strict/go.js
function go(..._) {
return reduce(go1Sync, _);
}
// CONCATENATED MODULE: ./Lazy/mapLazy.js
/* harmony default export */ var Lazy_mapLazy = (curry(function* mapLazy(f, iter) {
for (const a of toIter(iter)) yield go1(a, f);
}));
// CONCATENATED MODULE: ./Strict/noop.js
function noop() {};
// CONCATENATED MODULE: ./Lazy/takeUntilLazy.js
/* harmony default export */ var Lazy_takeUntilLazy = (curry(function* takeUntilLazy(f, iter) {
let prev = null, ok = false;
for (const a of toIter(iter)) {
const _ok = ok || go1(a, f);
if (_ok instanceof Promise) {
_ok.catch(noop);
yield prev = (prev || Promise.resolve())
.then(_ => _ok)
.then(_ok => ok ? Promise.reject(Strict_nop) : ((ok = _ok), a));
prev = prev.catch(noop);
} else {
ok = _ok;
yield a;
}
if (ok) break;
}
}));
// CONCATENATED MODULE: ./Strict/not.js
function not(a) {
return !a;
}
// CONCATENATED MODULE: ./Strict/every.js
/* harmony default export */ var Strict_every = (curry(function every(f, iter) {
return go(
Lazy_mapLazy(f, iter),
Lazy_takeUntilLazy(not),
reduce((a, b) => a && b),
(a = false) => a,
Boolean);
}));
// CONCATENATED MODULE: ./Lazy/entriesLazy.js
function* entriesLazy(obj) {
for (const k in obj) yield [k, obj[k]];
}
// CONCATENATED MODULE: ./Strict/isMatch.js
/* harmony default export */ var Strict_isMatch = (curry(function isMatch(a, b) {
return (
typeof a == 'function' ? !!a(b)
:
Strict_isArray(a) && Strict_isArray(b) ? Strict_every(v => b.includes(v), a)
:
typeof b == 'object' ? Strict_every(([k, v]) => b[k] == v, entriesLazy(a))
:
a instanceof RegExp ? b.match(a)
:
a == b
);
}));
// CONCATENATED MODULE: ./Strict/findWhere.js
/* harmony default export */ var Strict_findWhere = (curry(function findWhere(w, iter) {
return Strict_find(Strict_isMatch(w), iter);
}));
// CONCATENATED MODULE: ./Strict/baseSel.js
/* harmony default export */ var baseSel = (sep => curry(function sel(selector, acc) {
return (
!selector ?
acc
:
Strict_isArray(selector) ?
reduce((acc, selector) => sel(selector, acc), acc, selector)
:
typeof selector == 'object' || typeof selector == 'function' ?
Strict_findWhere(selector, acc)
:
reduce(
(acc, key, s = key[0]) =>
!acc ? acc :
s == '#' ? Strict_findWhere({ id: key.substr(1) }, acc) :
s == '[' || s == '{' ? Strict_findWhere(JSON.parse(key), acc) :
acc[key],
acc,
selector.split(sep))
);
}));
// CONCATENATED MODULE: ./Strict/call.js
/* harmony default export */ var call = (curry(function call(f, ...args) {
return f(...args);
}));
// CONCATENATED MODULE: ./Strict/isIterable.js
function isIterable(a) {
return a != null && !!a[Symbol.iterator];
}
// CONCATENATED MODULE: ./Lazy/mapEntriesLazy.js
/* harmony default export */ var Lazy_mapEntriesLazy = (curry(function* mapEntriesLazy(f, iter) {
for (const [k, a] of toIter(iter)) yield go1(go1(a, f), b => [k, b]);
}));
// CONCATENATED MODULE: ./.internal/baseCalls.js
const baseCalls = (map, object) => function calls(fs, ...args) {
return isIterable(fs) ?
map(f => f(...args), fs) :
object(Lazy_mapEntriesLazy(f => f(...args), entriesLazy(fs)));
};
/* harmony default export */ var _internal_baseCalls = (baseCalls);
// CONCATENATED MODULE: ./Strict/map.js
/* harmony default export */ var Strict_map = (curry(function map(f, iter) {
return takeAll(Lazy_mapLazy(f, iter));
}));
// CONCATENATED MODULE: ./Strict/object.js
function object_object(iter) {
return reduce((obj, [k, v]) => (obj[k] = v, obj), {}, iter);
}
// CONCATENATED MODULE: ./Strict/calls.js
/* harmony default export */ var Strict_calls = (_internal_baseCalls(Strict_map, object_object));
// CONCATENATED MODULE: ./Lazy/rangeLazy.js
function* rangeLazy(start = 0, stop = start, step = 1) {
if (arguments.length === 1) start = 0;
if (arguments.length < 3 && start > stop) step *= -1;
if (start < stop) {
while (start < stop) {
yield start;
start += step;
}
} else {
while (start > stop) {
yield start;
start += step;
}
}
}
// CONCATENATED MODULE: ./Lazy/chunkLazy.js
/* harmony default export */ var Lazy_chunkLazy = (curry(function chunkLazy(n, iter) {
iter = toIter(iter);
return go(
rangeLazy(Infinity),
Lazy_mapLazy(_ => Strict_take(n, iter)),
Lazy_takeUntilLazy(c => c.length < n))
}));
// CONCATENATED MODULE: ./Strict/chunk.js
/* harmony default export */ var Strict_chunk = (curry(function chunk(n, iter) {
return takeAll(Lazy_chunkLazy(n, iter));
}));
// CONCATENATED MODULE: ./Strict/filter.js
/* harmony default export */ var Strict_filter = (curry(function filter(f, iter) {
return takeAll(Lazy_filterLazy(f, iter));
}));
// CONCATENATED MODULE: ./Strict/compact.js
/* harmony default export */ var compact = (Strict_filter(a => a));
// CONCATENATED MODULE: ./Strict/constant.js
function constant(a) {
return _ => a;
}
// CONCATENATED MODULE: ./Strict/countBy.js
function incSel(parent, k) {
parent[k] ? parent[k]++ : parent[k] = 1;
return parent;
}
/* harmony default export */ var Strict_countBy = (curry(function countBy(f, iter) {
return reduce((counts, a) => incSel(counts, f(a)), {}, iter);
}));
// CONCATENATED MODULE: ./Strict/delay.js
/* harmony default export */ var delay = (curry(async function delay(time, a) {
await new Promise(resolve => setTimeout(resolve, time));
return a;
}));
// CONCATENATED MODULE: ./Strict/debounce.js
/* harmony default export */ var Strict_debounce = (curry(function debounce(f, time) {
let i = 0;
return function _debounce(...args) {
return delay(time, ++i).then(id => id === i && f(...args));
};
}));
// CONCATENATED MODULE: ./Strict/last.js
function last(arr) {
return arr[arr.length - 1];
}
// CONCATENATED MODULE: ./Lazy/flatLazy.js
function flatLazy(iter, depth = 1) {
let concurCheck = null;
const iterStack = [toIter(iter)];
return {
next: function recur() {
const iter = last(iterStack);
if (!iter) return { done: true };
const cur = iter.next();
if (cur.done) {
iterStack.pop();
return recur();
} else if (iterStack.length <= depth && isIterable(cur.value) && typeof cur.value != 'string') {
iterStack.push(cur.value[Symbol.iterator]());
return recur();
} else if (cur.value instanceof Promise) {
if (concurCheck && !concurCheck.done) {
iterStack.length = 0;
return { value: Promise.reject(new Error("'L.flat' can not be used with 'C' function.")), done: false };
}
concurCheck = concurCheck || {};
return {
value: cur.value.then(value => {
if (!concurCheck.hasOwnProperty('done')) concurCheck.done = true;
if (iterStack.length > depth || !isIterable(value) || typeof value == 'string') return value;
const iter = value[Symbol.iterator](), cur = iter.next();
return cur.done ? Promise.reject(Strict_nop) : (iterStack.push(iter), cur.value);
}).catch(e => {
if (!concurCheck.hasOwnProperty('done')) concurCheck.done = true;
return Promise.reject(e);
}),
done: false
};
} else {
return cur;
}
},
[Symbol.iterator]() { return this; }
};
}
// CONCATENATED MODULE: ./Lazy/deepFlatLazy.js
function deepFlatLazy(iter) {
return flatLazy(iter, Infinity);
}
// CONCATENATED MODULE: ./Strict/deepFlat.js
function deepFlat(iter) {
return takeAll(deepFlatLazy(iter));
}
// CONCATENATED MODULE: ./.internal/baseExtend.js
function baseExtend(set, obj, objs) {
const type = typeof obj;
obj &&
(type == 'object' || type == 'function') &&
reduce(reduce(set), obj, Lazy_mapLazy(entriesLazy, objs));
return obj;
}
// CONCATENATED MODULE: ./Strict/has.js
/* harmony default export */ var has = (curry(function has(k, obj) {
return !!(obj && obj.hasOwnProperty(k));
}));
// CONCATENATED MODULE: ./Strict/defaults.js
const setter = (obj, [k, v]) => {
return (has(k, obj) || (obj[k] = v, obj), obj);
};
function defaults(obj, ...objs) {
return baseExtend(setter, obj, objs);
}
/* harmony default export */ var Strict_defaults = (defaults);
// CONCATENATED MODULE: ./Strict/defaultTo.js
/* harmony default export */ var defaultTo = (curry(function defaultTo(a, b) {
return (b == null || Number.isNaN(b)) ? a : b;
}));
// CONCATENATED MODULE: ./Strict/identity.js
/* harmony default export */ var identity = (a => a);
// CONCATENATED MODULE: ./Lazy/rejectLazy.js
/* harmony default export */ var Lazy_rejectLazy = (curry(function rejectLazy(f, iter) {
return Lazy_filterLazy(a => go1(f(a), not), iter);
}));
// CONCATENATED MODULE: ./Lazy/differenceByLazy.js
/* harmony default export */ var Lazy_differenceByLazy = (curry(function differenceByLazy(f, iter2, iter) {
let set;
return Lazy_rejectLazy(a => go1(
set || go1(Strict_map(f, iter2), b => set = new Set(b)),
set => go(a, f, b => set.has(b))
), iter);
}));
// CONCATENATED MODULE: ./Lazy/differenceLazy.js
/* harmony default export */ var Lazy_differenceLazy = (curry(function differenceLazy(b, a) {
return Lazy_differenceByLazy(identity, b, a);
}));
// CONCATENATED MODULE: ./Strict/difference.js
/* harmony default export */ var Strict_difference = (curry(function difference(b, a) {
return go(
Lazy_differenceLazy(b, a),
takeAll
);
}));
// CONCATENATED MODULE: ./Strict/differenceBy.js
/* harmony default export */ var Strict_differenceBy = (curry(function differenceBy(f, b, a) {
return go(
Lazy_differenceByLazy(f, b, a),
takeAll
)
}));
// CONCATENATED MODULE: ./Lazy/differenceWithLazy.js
/* harmony default export */ var Lazy_differenceWithLazy = (curry(function differenceWithLazy(f, iter1, iter2) {
return Lazy_rejectLazy(
a => go1(Strict_take(1, Lazy_filterLazy(b => f(a, b), iter2)), b => b.length),
iter1);
}));
// CONCATENATED MODULE: ./Strict/differenceWith.js
/* harmony default export */ var Strict_differenceWith = (curry(function differenceWith(f, iter1, iter2) {
return takeAll(Lazy_differenceWithLazy(f, iter1, iter2));
}));
// CONCATENATED MODULE: ./Lazy/dropLazy.js
/* harmony default export */ var Lazy_dropLazy = (curry(function* dropLazy(l, iter) {
if (l < 1) yield* iter;
let prev = null, i = 0;
iter = toIter(iter);
for(const a of iter) {
if (a instanceof Promise) {
a.catch(noop);
yield prev = (prev || Promise.resolve())
.then(_ => a)
.then(b => ++i > l ? b : Promise.reject(Strict_nop));
prev = prev.catch(noop);
} else if (++i == l) return yield* iter;
}
}));
// CONCATENATED MODULE: ./Strict/drop.js
/* harmony default export */ var Strict_drop = (curry(function drop(l, iter) {
return takeAll(Lazy_dropLazy(l, iter));
}));
// CONCATENATED MODULE: ./Strict/dropRight.js
/* harmony default export */ var dropRight = (curry(function drop(l, iter) {
return go1(takeAll(iter), arr => Strict_take(arr.length - l, arr));
}));
// CONCATENATED MODULE: ./Lazy/dropUntilLazy.js
/* harmony default export */ var Lazy_dropUntilLazy = (curry(function* dropUntilLazy(f, iter) {
let prev = null, ok = false;
iter = toIter(iter);
for(const a of iter) {
const cond = ok || go1(a, f);
if (cond instanceof Promise) {
cond.catch(noop);
yield prev = (prev || Promise.resolve())
.then(_ => cond)
.then(c => ok ? a : (ok = c, Promise.reject(Strict_nop)));
prev = prev.catch(noop);
} else ok = cond;
if (ok) return yield* iter;
}
}));
// CONCATENATED MODULE: ./Strict/dropUntil.js
/* harmony default export */ var dropUntil = (curry(function dropWhile(f, iter) {
return takeAll(Lazy_dropUntilLazy(f, iter));
}));
// CONCATENATED MODULE: ./Lazy/dropWhileLazy.js
/* harmony default export */ var Lazy_dropWhileLazy = (curry(function* dropWhileLazy(f, iter) {
let prev = null, ok = false;
iter = toIter(iter);
for(const a of iter) {
const cond = ok || go1(a, f);
if (cond instanceof Promise) {
cond.catch(noop);
yield prev = (prev || Promise.resolve())
.then(_ => cond)
.then(c => (ok = !c) ? a : Promise.reject(Strict_nop));