diff --git a/lodash.js b/lodash.js index 4e3fc37a8..45ea627d5 100644 --- a/lodash.js +++ b/lodash.js @@ -15281,15 +15281,6 @@ * * _.toPath('a[0].b.c'); * // => ['a', '0', 'b', 'c'] - * - * var path = ['a', 'b', 'c'], - * newPath = _.toPath(path); - * - * console.log(newPath); - * // => ['a', 'b', 'c'] - * - * console.log(path === newPath); - * // => false */ function toPath(value) { if (isArray(value)) {