* This method is like `_.curry` except that arguments are applied to `func` * in the manner of `_.partialRight` instead of `_.partial`. * * The `_.curryRight.placeholder` value, which defaults to `_` in monolithic * builds, may be used as a placeholder for provided arguments.
(func, arity, guard)
| 10340 | * // => [1, 2, 3] |
| 10341 | */ |
| 10342 | function curryRight(func, arity, guard) { |
| 10343 | arity = guard ? undefined : arity; |
| 10344 | var result = createWrap(func, WRAP_CURRY_RIGHT_FLAG, undefined, undefined, undefined, undefined, undefined, arity); |
| 10345 | result.placeholder = curryRight.placeholder; |
| 10346 | return result; |
| 10347 | } |
| 10348 | |
| 10349 | /** |
| 10350 | * Creates a debounced function that delays invoking `func` until after `wait` |
nothing calls this directly
no test coverage detected