summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/lodash/function/flowRight.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/node_modules/lodash/function/flowRight.js')
-rw-r--r--deps/npm/node_modules/lodash/function/flowRight.js25
1 files changed, 0 insertions, 25 deletions
diff --git a/deps/npm/node_modules/lodash/function/flowRight.js b/deps/npm/node_modules/lodash/function/flowRight.js
deleted file mode 100644
index 23b9d76b58..0000000000
--- a/deps/npm/node_modules/lodash/function/flowRight.js
+++ /dev/null
@@ -1,25 +0,0 @@
-var createFlow = require('../internal/createFlow');
-
-/**
- * This method is like `_.flow` except that it creates a function that
- * invokes the provided functions from right to left.
- *
- * @static
- * @memberOf _
- * @alias backflow, compose
- * @category Function
- * @param {...Function} [funcs] Functions to invoke.
- * @returns {Function} Returns the new function.
- * @example
- *
- * function square(n) {
- * return n * n;
- * }
- *
- * var addSquare = _.flowRight(square, _.add);
- * addSquare(1, 2);
- * // => 9
- */
-var flowRight = createFlow(true);
-
-module.exports = flowRight;