mirror of
https://github.com/swc-project/swc.git
synced 2024-12-20 20:22:26 +03:00
bbaf619f63
swc_bundler: - [x] Fix wrapped esms. (denoland/deno#9307) - [x] Make test secure.
44 lines
1.4 KiB
TypeScript
44 lines
1.4 KiB
TypeScript
// Loaded from https://deno.land/x/ramda@v0.27.2/source/chain.js
|
|
|
|
|
|
import _curry2 from './internal/_curry2.js';
|
|
import _dispatchable from './internal/_dispatchable.js';
|
|
import _makeFlat from './internal/_makeFlat.js';
|
|
import _xchain from './internal/_xchain.js';
|
|
import map from './map.js';
|
|
|
|
|
|
/**
|
|
* `chain` maps a function over a list and concatenates the results. `chain`
|
|
* is also known as `flatMap` in some libraries.
|
|
*
|
|
* Dispatches to the `chain` method of the second argument, if present,
|
|
* according to the [FantasyLand Chain spec](https://github.com/fantasyland/fantasy-land#chain).
|
|
*
|
|
* If second argument is a function, `chain(f, g)(x)` is equivalent to `f(g(x), x)`.
|
|
*
|
|
* Acts as a transducer if a transformer is given in list position.
|
|
*
|
|
* @func
|
|
* @memberOf R
|
|
* @since v0.3.0
|
|
* @category List
|
|
* @sig Chain m => (a -> m b) -> m a -> m b
|
|
* @param {Function} fn The function to map with
|
|
* @param {Array} list The list to map over
|
|
* @return {Array} The result of flat-mapping `list` with `fn`
|
|
* @example
|
|
*
|
|
* const duplicate = n => [n, n];
|
|
* R.chain(duplicate, [1, 2, 3]); //=> [1, 1, 2, 2, 3, 3]
|
|
*
|
|
* R.chain(R.append, R.head)([1, 2, 3]); //=> [1, 2, 3, 1]
|
|
*/
|
|
var chain = _curry2(_dispatchable(['fantasy-land/chain', 'chain'], _xchain, function chain(fn, monad) {
|
|
if (typeof monad === 'function') {
|
|
return function(x) { return fn(monad(x))(x); };
|
|
}
|
|
return _makeFlat(false)(map(fn, monad));
|
|
}));
|
|
export default chain;
|