Skip to content

Commit

Permalink
fix: expose xyEnsureFloat64 (#226)
Browse files Browse the repository at this point in the history
  • Loading branch information
jobo322 authored Mar 6, 2024
1 parent 4639c83 commit 2260f3c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
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';

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';

0 comments on commit 2260f3c

Please sign in to comment.