mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-03 16:47:49 +00:00
Apply let/const transform.
This commit is contained in:
@@ -9,7 +9,7 @@
|
||||
* @returns {Array} Returns `array`.
|
||||
*/
|
||||
function baseSortBy(array, comparer) {
|
||||
var length = array.length;
|
||||
let length = array.length;
|
||||
|
||||
array.sort(comparer);
|
||||
while (length--) {
|
||||
|
||||
Reference in New Issue
Block a user