UNPKG
array-sorted
Version:
latest (1.0.0)
1.0.0
check an array is sorted or not.
array-sorted
/
test
/
custom-func.js
8 lines
(6 loc)
•
102 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
const
custom = {
LargerToSmaller
:
(
a, b
) =>
{
return
b > a; } };
module
.
exports
= custom;