action-debian-package/node_modules/ramda/src/applyTo.js
Dawid Dziurla 9308795b8b
update
2020-03-26 15:37:35 +01:00

31 lines
612 B
JavaScript

var _curry2 =
/*#__PURE__*/
require("./internal/_curry2");
/**
* Takes a value and applies a function to it.
*
* This function is also known as the `thrush` combinator.
*
* @func
* @memberOf R
* @since v0.25.0
* @category Function
* @sig a -> (a -> b) -> b
* @param {*} x The value
* @param {Function} f The function to apply
* @return {*} The result of applying `f` to `x`
* @example
*
* const t42 = R.applyTo(42);
* t42(R.identity); //=> 42
* t42(R.add(1)); //=> 43
*/
var applyTo =
/*#__PURE__*/
_curry2(function applyTo(x, f) {
return f(x);
});
module.exports = applyTo;