mirror of
https://github.com/swc-project/swc.git
synced 2024-12-21 12:41:54 +03:00
bbaf619f63
swc_bundler: - [x] Fix wrapped esms. (denoland/deno#9307) - [x] Make test secure.
36 lines
904 B
TypeScript
36 lines
904 B
TypeScript
// Loaded from https://deno.land/x/ramda@v0.27.2/source/internal/_curry2.js
|
|
|
|
|
|
import _curry1 from './_curry1.js';
|
|
import _isPlaceholder from './_isPlaceholder.js';
|
|
|
|
|
|
/**
|
|
* Optimized internal two-arity curry function.
|
|
*
|
|
* @private
|
|
* @category Function
|
|
* @param {Function} fn The function to curry.
|
|
* @return {Function} The curried function.
|
|
*/
|
|
export default function _curry2(fn) {
|
|
return function f2(a, b) {
|
|
switch (arguments.length) {
|
|
case 0:
|
|
return f2;
|
|
case 1:
|
|
return _isPlaceholder(a)
|
|
? f2
|
|
: _curry1(function(_b) { return fn(a, _b); });
|
|
default:
|
|
return _isPlaceholder(a) && _isPlaceholder(b)
|
|
? f2
|
|
: _isPlaceholder(a)
|
|
? _curry1(function(_a) { return fn(_a, b); })
|
|
: _isPlaceholder(b)
|
|
? _curry1(function(_b) { return fn(a, _b); })
|
|
: fn(a, b);
|
|
}
|
|
};
|
|
}
|