From 75690245aae87f85afe8f5309230f2029e757f93 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sun, 14 Jan 2018 09:06:30 -0800 Subject: [PATCH] Add the accepted customizer arguments to cloneDeepWith docs. --- cloneDeepWith.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cloneDeepWith.js b/cloneDeepWith.js index c736cedcf..25afd3e56 100644 --- a/cloneDeepWith.js +++ b/cloneDeepWith.js @@ -6,6 +6,8 @@ const CLONE_SYMBOLS_FLAG = 4 /** * This method is like `cloneWith` except that it recursively clones `value`. + * The customizer is invoked with up to four arguments + * (value [, index|key, object, stack]). * * @since 4.0.0 * @category Lang