Skip to content

Commit eaf8cc4

Browse files
authored
Fixed naming and scoping of modules
1 parent 6409732 commit eaf8cc4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import * as Functions from './katapult-functions.js';
22
import * as Geometry from './katapult-geometry.js';
33

4-
export const KatapultFunctions = { Geometry };
5-
export const KatapultGeometry = { Functions };
4+
export const KatapultFunctions = { ...Functions };
5+
export const KatapultGeometry = { ...Geometry };

0 commit comments

Comments
 (0)