Add more _.toArray doc examples. [ci skip]

This commit is contained in:
John-David Dalton
2016-01-11 16:11:54 -08:00
parent f619a6666a
commit 2386557b5e

View File

@@ -10113,10 +10113,17 @@
* @returns {Array} Returns the converted array. * @returns {Array} Returns the converted array.
* @example * @example
* *
* (function() { * _.toArray({ 'a': 1, 'b': 2 });
* return _.toArray(arguments).slice(1); * // => [1, 2]
* }(1, 2, 3)); *
* // => [2, 3] * _.toArray('abc');
* // => ['a', 'b', 'c']
*
* _.toArray(1);
* // => []
*
* _.toArray(null);
* // => []
*/ */
function toArray(value) { function toArray(value) {
if (!value) { if (!value) {