From 650282b186ce569823ae712102188cd7c9ee457e Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sat, 5 Sep 2015 09:59:38 -0700 Subject: [PATCH] Add `console.log`s to doc examples. [ci skip] --- lodash.js | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/lodash.js b/lodash.js index c876d6a6a..35eebe3ab 100644 --- a/lodash.js +++ b/lodash.js @@ -7956,7 +7956,7 @@ * ]; * * var shallow = _.clone(users); - * shallow[0] === users[0]; + * console.log(shallow[0] === users[0]); * // => true */ function clone(value) { @@ -7983,11 +7983,11 @@ * } * }); * - * el === document.body + * console.log(el === document.body); * // => false - * el.nodeName + * console.log(el.nodeName); * // => BODY - * el.childNodes.length; + * console.log(el.childNodes.length); * // => 0 */ function cloneWith(value, customizer) { @@ -8010,7 +8010,7 @@ * ]; * * var deep = _.cloneDeep(users); - * deep[0] === users[0]; + * console.log(deep[0] === users[0]); * // => false */ function cloneDeep(value) { @@ -8034,11 +8034,11 @@ * } * }); * - * el === document.body + * console.log(el === document.body); * // => false - * el.nodeName + * console.log(el.nodeName); * // => BODY - * el.childNodes.length; + * console.log(el.childNodes.length); * // => 20 */ function cloneDeepWith(value, customizer) {