mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-29 14:37:49 +00:00
Minor doc tweaks to _.partition and _.zip. [ci skip]
This commit is contained in:
16
dist/lodash.compat.js
vendored
16
dist/lodash.compat.js
vendored
@@ -3123,10 +3123,10 @@
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates an array of grouped elements, the first of which contains the
|
||||
* first elements of the given arrays, the second of which contains the second
|
||||
* elements of the given arrays, and so on. If a zipped value is provided its
|
||||
* corresponding unzipped value will be returned.
|
||||
* Creates an array of grouped elements, the first of which contains the first
|
||||
* elements of the given arrays, the second of which contains the second elements
|
||||
* of the given arrays, and so on. If a zipped value is provided its corresponding
|
||||
* unzipped value will be returned.
|
||||
*
|
||||
* @static
|
||||
* @memberOf _
|
||||
@@ -4085,10 +4085,10 @@
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates an array of grouped elements, the first of which contains elements
|
||||
* the callback returns truey for, the second of which contains elements the
|
||||
* callback returns falsey for. The callback is bound to `thisArg` and invoked
|
||||
* with three arguments; (value, index|key, collection).
|
||||
* Creates an array of elements split into two groups, the first of which
|
||||
* contains elements the callback returns truey for, while the second of which
|
||||
* contains elements the callback returns falsey for. The callback is bound
|
||||
* to `thisArg` and invoked with three arguments; (value, index|key, collection).
|
||||
*
|
||||
* If a property name is provided for `callback` the created "_.pluck" style
|
||||
* callback will return the property value of the given element.
|
||||
|
||||
16
dist/lodash.js
vendored
16
dist/lodash.js
vendored
@@ -2860,10 +2860,10 @@
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates an array of grouped elements, the first of which contains the
|
||||
* first elements of the given arrays, the second of which contains the second
|
||||
* elements of the given arrays, and so on. If a zipped value is provided its
|
||||
* corresponding unzipped value will be returned.
|
||||
* Creates an array of grouped elements, the first of which contains the first
|
||||
* elements of the given arrays, the second of which contains the second elements
|
||||
* of the given arrays, and so on. If a zipped value is provided its corresponding
|
||||
* unzipped value will be returned.
|
||||
*
|
||||
* @static
|
||||
* @memberOf _
|
||||
@@ -3823,10 +3823,10 @@
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates an array of grouped elements, the first of which contains elements
|
||||
* the callback returns truey for, the second of which contains elements the
|
||||
* callback returns falsey for. The callback is bound to `thisArg` and invoked
|
||||
* with three arguments; (value, index|key, collection).
|
||||
* Creates an array of elements split into two groups, the first of which
|
||||
* contains elements the callback returns truey for, while the second of which
|
||||
* contains elements the callback returns falsey for. The callback is bound
|
||||
* to `thisArg` and invoked with three arguments; (value, index|key, collection).
|
||||
*
|
||||
* If a property name is provided for `callback` the created "_.pluck" style
|
||||
* callback will return the property value of the given element.
|
||||
|
||||
8
dist/lodash.underscore.js
vendored
8
dist/lodash.underscore.js
vendored
@@ -1858,10 +1858,10 @@
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates an array of grouped elements, the first of which contains the
|
||||
* first elements of the given arrays, the second of which contains the second
|
||||
* elements of the given arrays, and so on. If a zipped value is provided its
|
||||
* corresponding unzipped value will be returned.
|
||||
* Creates an array of grouped elements, the first of which contains the first
|
||||
* elements of the given arrays, the second of which contains the second elements
|
||||
* of the given arrays, and so on. If a zipped value is provided its corresponding
|
||||
* unzipped value will be returned.
|
||||
*
|
||||
* @static
|
||||
* @memberOf _
|
||||
|
||||
394
doc/README.md
394
doc/README.md
File diff suppressed because it is too large
Load Diff
16
lodash.js
16
lodash.js
@@ -3138,10 +3138,10 @@
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates an array of grouped elements, the first of which contains the
|
||||
* first elements of the given arrays, the second of which contains the second
|
||||
* elements of the given arrays, and so on. If a zipped value is provided its
|
||||
* corresponding unzipped value will be returned.
|
||||
* Creates an array of grouped elements, the first of which contains the first
|
||||
* elements of the given arrays, the second of which contains the second elements
|
||||
* of the given arrays, and so on. If a zipped value is provided its corresponding
|
||||
* unzipped value will be returned.
|
||||
*
|
||||
* @static
|
||||
* @memberOf _
|
||||
@@ -4101,10 +4101,10 @@
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates an array of grouped elements, the first of which contains elements
|
||||
* the callback returns truey for, the second of which contains elements the
|
||||
* callback returns falsey for. The callback is bound to `thisArg` and invoked
|
||||
* with three arguments; (value, index|key, collection).
|
||||
* Creates an array of elements split into two groups, the first of which
|
||||
* contains elements the callback returns truey for, while the second of which
|
||||
* contains elements the callback returns falsey for. The callback is bound
|
||||
* to `thisArg` and invoked with three arguments; (value, index|key, collection).
|
||||
*
|
||||
* If a property name is provided for `callback` the created "_.pluck" style
|
||||
* callback will return the property value of the given element.
|
||||
|
||||
Reference in New Issue
Block a user