fixed an issue with default parameters
This commit is contained in:
committed by
GitHub
parent
dbc3b9c452
commit
3d9538ef7e
@ -10,7 +10,7 @@ const orderBy = (arr, props, orders) =>
|
|||||||
arr.sort((a, b) =>
|
arr.sort((a, b) =>
|
||||||
props.reduce((acc, prop, i) => {
|
props.reduce((acc, prop, i) => {
|
||||||
if (acc === 0) {
|
if (acc === 0) {
|
||||||
const [p1, p2] = orders[i] === 'asc' ? [a[prop], b[prop]] : [b[prop], a[prop]];
|
const [p1, p2] = orders && orders[i] === 'desc' ? [b[prop], a[prop]] : [a[prop], b[prop]];
|
||||||
acc = p1 > p2 ? 1 : p1 < p2 ? -1 : 0;
|
acc = p1 > p2 ? 1 : p1 < p2 ? -1 : 0;
|
||||||
}
|
}
|
||||||
return acc;
|
return acc;
|
||||||
|
|||||||
Reference in New Issue
Block a user