Skip to content

Commit 6917115

Browse files
♻️ refactor(index.js): Simplify.
1 parent 451380d commit 6917115

File tree

2 files changed

+8
-18
lines changed

2 files changed

+8
-18
lines changed

src/array/api/index.js

Lines changed: 0 additions & 8 deletions
This file was deleted.

src/index.js

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
1-
export {
2-
sort,
3-
sortInt16,
4-
sortFloat32,
5-
sortInt8,
6-
sortInt32,
7-
sortUint16,
8-
sortUint8,
9-
sortUint32,
10-
} from './array/api/index.js';
1+
export {default as sort} from './array/api/sort.js';
2+
export {default as sortInt16} from './array/api/sortInt16.js';
3+
export {default as sortFloat32} from './array/api/sortFloat32.js';
4+
export {default as sortInt8} from './array/api/sortInt8.js';
5+
export {default as sortInt32} from './array/api/sortInt32.js';
6+
export {default as sortUint32} from './array/api/sortUint32.js';
7+
export {default as sortUint16} from './array/api/sortUint16.js';
8+
export {default as sortUint8} from './array/api/sortUint8.js';

0 commit comments

Comments
 (0)