File: D:/HostingSpaces/SBogers10/bomacon.komma.pro/node_modules/ramda/src/tap.js
var _curry2 = require('./internal/_curry2');
/**
* Runs the given function with the supplied object, then returns the object.
*
* @func
* @memberOf R
* @since v0.1.0
* @category Function
* @sig (a -> *) -> a -> a
* @param {Function} fn The function to call with `x`. The return value of `fn` will be thrown away.
* @param {*} x
* @return {*} `x`.
* @example
*
* var sayX = x => console.log('x is ' + x);
* R.tap(sayX, 100); //=> 100
* // logs 'x is 100'
* @symb R.tap(f, a) = a
*/
module.exports = _curry2(function tap(fn, x) {
fn(x);
return x;
});