-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: reuse natural-orderby v3 as it ported to typescript with perfor…
…mance fixes
- Loading branch information
1 parent
03670e9
commit 57f688b
Showing
73 changed files
with
22 additions
and
7,288 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
{ | ||
"extends": ["config:base"], | ||
"labels": ["dependencies", "backend"], | ||
"ignoreDeps": [ | ||
"@types/node" | ||
] | ||
"labels": ["backend"], | ||
"ignoreDeps": ["@types/node"] | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,2 @@ | ||
// Javascript natural sort algorithm with unicode support | ||
// based on chunking idea by Dave Koelle | ||
// | ||
// https://github.com/yobacca/natural-sort-order | ||
// released under MIT License | ||
import orderBy from './orderBy/index.js'; | ||
import compare from './compare/index.js'; | ||
|
||
export {orderBy, compare}; | ||
// eslint-disable-next-line no-restricted-imports | ||
export {orderBy, compare} from 'natural-orderby'; |
Oops, something went wrong.