Skip to content

Commit ba52bc9

Browse files
committed
exported chapter 3 functions - closes loiane#45
1 parent f015347 commit ba52bc9

3 files changed

+7
-7
lines changed

examples/PacktDataStructuresAlgorithms.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/PacktDataStructuresAlgorithms.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/js/index.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ export const util = _util;
66
// chapter 03
77
export { default as StackArray } from './data-structures/stack-array';
88
export { default as Stack } from './data-structures/stack';
9-
export { default as hanoi } from './others/hanoi';
10-
export { default as hanoiStack } from './others/hanoi';
11-
export { default as baseConverter } from './others/base-converter';
12-
export { default as decimalToBinary } from './others/base-converter';
13-
export { default as parenthesesChecker } from './others/balanced-symbols';
9+
export { hanoi } from './others/hanoi';
10+
export { hanoiStack } from './others/hanoi';
11+
export { baseConverter } from './others/base-converter';
12+
export { decimalToBinary } from './others/base-converter';
13+
export { parenthesesChecker } from './others/balanced-symbols';
1414

1515
// chapter 04
1616
export { default as Queue } from './data-structures/queue';

0 commit comments

Comments
 (0)