UNPKG
cocktailsort
Version:
latest (2.0.0)
2.0.0
1.0.3
1.0.2
1.0.1
1.0.0
Cocktail Sort (bidirectional bubble sort)
github.com/coderosh/cocktailsort
coderosh/cocktailsort
cocktailsort
/
dist
/
index.d.ts
3 lines
(2 loc)
•
102 B
TypeScript
View Raw
1
2
3
declare
function
sort<T =
any
>(
arr
: T[],
cmpFn
?:
(
a
: T,
b
: T
) =>
number
): T[];
export
default
sort;