File tree Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Original file line number Diff line number Diff line change
1
+ export { IndexError } from '@failure-abstraction/error' ;
2
+
1
3
export * as core from './core/index.js' ;
4
+
2
5
export { default as heappop } from './heappop.js' ;
3
6
export { default as heapify } from './heapify.js' ;
4
7
export { default as heappushpop } from './heappushpop.js' ;
Original file line number Diff line number Diff line change
1
+ import * as mod from '#module' ;
2
+
3
+ export const { IndexError} = mod . default ?? mod ;
Original file line number Diff line number Diff line change 1
1
import test from 'ava' ;
2
2
3
- import { IndexError } from '@failure-abstraction/error' ;
4
3
import { list } from '@iterable-iterator/list' ;
5
4
import { increasing } from '@total-order/primitive' ;
6
5
6
+ import { IndexError } from './_fixtures.js' ;
7
+
7
8
import * as heapq from '#module' ;
8
9
9
10
test ( 'heapq' , ( t ) => {
You can’t perform that action at this time.
0 commit comments