Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/__tests__/__snapshots__/index.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ exports[`test existence of exported functions 1`] = `
"xyToXYObject",
"xyUniqueX",
"xyWeightedMerge",
"xyEnsureFloat64",
"xy2ToXY",
"xreimSortX",
"xreimZeroFilling",
Expand Down
2 changes: 1 addition & 1 deletion src/xy/__tests__/xyEnsureFloat64.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { xyEnsureFloat64 } from '../xyEnsureFloat64';
import { xyEnsureFloat64 } from '../index';
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

it was a suggestion some time ago, to ensure that I am exporting the function.


test('normal array', () => {
const data = {
Expand Down
1 change: 1 addition & 0 deletions src/xy/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,4 @@ export * from './xyToXYArray';
export * from './xyToXYObject';
export * from './xyUniqueX';
export * from './xyWeightedMerge';
export * from './xyEnsureFloat64';
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is not sorted correctly.