UNPKG
alphanum-sort
Version:
latest (1.1.0)
1.1.0
1.0.2
1.0.1
1.0.0
Alphanumeric sorting algorithm
github.com/TrySound/alphanum-sort
TrySound/alphanum-sort
alphanum-sort
/
lib
/
index.d.ts
11 lines
(8 loc)
•
193 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
declare
function
sort<T>(
array
: T[],
opts
?: sort.
Options
): T[];
declare
namespace
sort
{
interface
Options
{
insensitive
?:
boolean
;
sign
?:
boolean
; } }
export
= sort;