-
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.
BREAKING CHANGE: The default export is no more.
- Loading branch information
1 parent
1de8e16
commit 1c8a64b
Showing
2 changed files
with
7 additions
and
11 deletions.
There are no files selected for viewing
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,10 +1,6 @@ | ||
import Node from './Node.js'; | ||
import PairingHeap from './PairingHeap.js'; | ||
import prepend from './prepend.js'; | ||
import decreasekey from './decreasekey.js'; | ||
import merge from './merge.js'; | ||
import mergepairs from './mergepairs.js'; | ||
|
||
export default PairingHeap; | ||
|
||
export {Node, PairingHeap, prepend, decreasekey, merge, mergepairs}; | ||
export {default as Node} from './Node.js'; | ||
export {default as PairingHeap} from './PairingHeap.js'; | ||
export {default as decreasekey} from './decreasekey.js'; | ||
export {default as merge} from './merge.js'; | ||
export {default as mergepairs} from './mergepairs.js'; | ||
export {default as prepend} from './prepend.js'; |
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