Remove extraneous _.toPath examples. [ci skip]

This commit is contained in:
John-David Dalton
2016-05-10 20:13:46 -07:00
parent 04d6e351a6
commit 262049f737

View File

@@ -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)) {