We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7f6032 commit fa1a79cCopy full SHA for fa1a79c
web/js/utils/functional.js
@@ -0,0 +1,4 @@
1
+const partialRight = (fn, presetArgs) => (...laterArgs) =>
2
+ fn(...laterArgs, ...presetArgs);
3
+
4
+export { partialRight };
0 commit comments