We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 451380d commit 6917115Copy full SHA for 6917115
src/array/api/index.js
src/index.js
@@ -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';
+export {default as sort} from './array/api/sort.js';
+export {default as sortInt16} from './array/api/sortInt16.js';
+export {default as sortFloat32} from './array/api/sortFloat32.js';
+export {default as sortInt8} from './array/api/sortInt8.js';
+export {default as sortInt32} from './array/api/sortInt32.js';
+export {default as sortUint32} from './array/api/sortUint32.js';
+export {default as sortUint16} from './array/api/sortUint16.js';
+export {default as sortUint8} from './array/api/sortUint8.js';
0 commit comments