From e9562a6ce33bcbae23c9bba759fdda560cd19a7f Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Tue, 9 Jan 2018 10:08:44 -0800 Subject: [PATCH] Update argument count for `cloneWith` customizer. [closes #3582] --- cloneWith.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cloneWith.js b/cloneWith.js index 2e43ff18f..a801faa54 100644 --- a/cloneWith.js +++ b/cloneWith.js @@ -7,7 +7,7 @@ const CLONE_SYMBOLS_FLAG = 4 * This method is like `clone` except that it accepts `customizer` which * is invoked to produce the cloned value. If `customizer` returns `undefined`, * cloning is handled by the method instead. The `customizer` is invoked with - * up to four arguments (value [, index|key, object, stack]). + * one argument (value). * * @since 4.0.0 * @category Lang