update
This commit is contained in:
parent
d9becc67b6
commit
9308795b8b
964 changed files with 104265 additions and 16 deletions
30
node_modules/ramda/es/__.js
generated
vendored
Normal file
30
node_modules/ramda/es/__.js
generated
vendored
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
/**
|
||||
* A special placeholder value used to specify "gaps" within curried functions,
|
||||
* allowing partial application of any combination of arguments, regardless of
|
||||
* their positions.
|
||||
*
|
||||
* If `g` is a curried ternary function and `_` is `R.__`, the following are
|
||||
* equivalent:
|
||||
*
|
||||
* - `g(1, 2, 3)`
|
||||
* - `g(_, 2, 3)(1)`
|
||||
* - `g(_, _, 3)(1)(2)`
|
||||
* - `g(_, _, 3)(1, 2)`
|
||||
* - `g(_, 2, _)(1, 3)`
|
||||
* - `g(_, 2)(1)(3)`
|
||||
* - `g(_, 2)(1, 3)`
|
||||
* - `g(_, 2)(_, 3)(1)`
|
||||
*
|
||||
* @name __
|
||||
* @constant
|
||||
* @memberOf R
|
||||
* @since v0.6.0
|
||||
* @category Function
|
||||
* @example
|
||||
*
|
||||
* const greet = R.replace('{name}', R.__, 'Hello, {name}!');
|
||||
* greet('Alice'); //=> 'Hello, Alice!'
|
||||
*/
|
||||
export default {
|
||||
'@@functional/placeholder': true
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue