From 262049f737bff4dfe95c43263448563122f5adb7 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Tue, 10 May 2016 20:13:46 -0700 Subject: [PATCH] Remove extraneous `_.toPath` examples. [ci skip] --- lodash.js | 9 --------- 1 file changed, 9 deletions(-) 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)) {