We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2acc9c7 commit 301d083Copy full SHA for 301d083
lib/optimize-js.js
@@ -386,6 +386,30 @@ const performanceReplacements = [
386
$elm$core$Set$empty,
387
set);
388
});`
389
+ },
390
+ {
391
+ target: `var $elm$core$Basics$composeL = F3(
392
+ function (g, f, x) {
393
+ return g(
394
+ f(x));
395
+ });`,
396
+ replacement: `var $elm$core$Basics$composeL = F2(function $elm$core$Basics$composeL$fn(g, f) {
397
+ return function(x) {
398
+ return g(f(x));
399
+ };
400
+});`
401
402
403
+ target: `var $elm$core$Basics$composeR = F3(
404
+ function (f, g, x) {
405
406
407
408
+ replacement: `var $elm$core$Basics$composeR = F2(function $elm$core$Basics$composeR$fn(f, g) {
409
410
411
412
413
}
414
];
415
0 commit comments