Skip to content

Commit 5d647da

Browse files
author
Gonzalo Diaz
committed
[BUGFIX] SonarQube: Use export…from to re-export Player.
Re-exports should use "export...from" syntax javascript:S7763
1 parent 228ef0b commit 5d647da

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/hackerrank/interview_preparation_kit/sort/ctci_comparator_sorting.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,5 @@ export default {
5050
comparatorSorting,
5151
comparatorSortingPrint
5252
};
53-
export { Player, SortablePlayer, comparatorSorting, comparatorSortingPrint };
53+
export { Player } from './ctci_comparator_sorting.Player.js';
54+
export { SortablePlayer, comparatorSorting, comparatorSortingPrint };

0 commit comments

Comments
 (0)